python: skip build at install phase
"python setup.py install" will also run "python setup.py build" which we've already done in buildPhase.
This commit is contained in:
parent
4251612faa
commit
d34f5b6570
|
@ -118,6 +118,7 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled"] // {
|
|||
${python}/bin/${python.executable} setup.py install \
|
||||
--install-lib=$out/lib/${python.libPrefix}/site-packages \
|
||||
--old-and-unmanageable \
|
||||
--skip-build \
|
||||
--prefix="$out" ${lib.concatStringsSep " " setupPyInstallFlags}
|
||||
|
||||
# --install-lib:
|
||||
|
|
Loading…
Reference in New Issue