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 \
|
${python}/bin/${python.executable} setup.py install \
|
||||||
--install-lib=$out/lib/${python.libPrefix}/site-packages \
|
--install-lib=$out/lib/${python.libPrefix}/site-packages \
|
||||||
--old-and-unmanageable \
|
--old-and-unmanageable \
|
||||||
|
--skip-build \
|
||||||
--prefix="$out" ${lib.concatStringsSep " " setupPyInstallFlags}
|
--prefix="$out" ${lib.concatStringsSep " " setupPyInstallFlags}
|
||||||
|
|
||||||
# --install-lib:
|
# --install-lib:
|
||||||
|
|
Loading…
Reference in New Issue