Fix buildPythonPackage overriding.
makeOverridable takes a function and an argument, the parenthesis caused there to be only one argument which works but cannot be overridden.
This commit is contained in:
parent
745b1ce04a
commit
6a1de6d4a7
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ let
|
|||
|
||||
callPackage = pkgs.newScope self;
|
||||
|
||||
buildPythonPackage = makeOverridable (callPackage ../development/python-modules/generic { });
|
||||
buildPythonPackage = makeOverridable callPackage ../development/python-modules/generic { };
|
||||
|
||||
# Unique python version identifier
|
||||
pythonName =
|
||||
|
|
Loading…
Reference in a new issue