buildPythonPackage: propagate setuptools

This commit is contained in:
Domen Kožar 2015-04-12 21:15:31 -04:00
parent 114ffa0d6c
commit c6512f7df3
1 changed files with 3 additions and 3 deletions

View File

@ -62,10 +62,10 @@ if disabled then throw "${name} not supported for interpreter ${python.executabl
] ++ buildInputs ++ pythonPath
++ (lib.optional (lib.hasSuffix "zip" attrs.src.name or "") unzip);
# propagate python to active setup-hook in nix-shell
propagatedBuildInputs = propagatedBuildInputs ++ [ recursivePthLoader python ];
# propagate python/setuptools to active setup-hook in nix-shell
propagatedBuildInputs = propagatedBuildInputs ++ [ recursivePthLoader python setuptools ];
pythonPath = [ setuptools ] ++ pythonPath;
pythonPath = pythonPath;
configurePhase = attrs.configurePhase or ''
runHook preConfigure