mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
recursive-pth-loader: fix python path
This should work for both python2 and python3.
This commit is contained in:
parent
5f3b19e661
commit
cadc9a03a7
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patchPhase = "cat ${./sitecustomize.py} > sitecustomize.py";
|
||||
|
||||
buildPhase = "python -m compileall .";
|
||||
buildPhase = "${python}/bin/${python.executable} -m compileall .";
|
||||
|
||||
installPhase =
|
||||
''
|
||||
|
|
Loading…
Reference in a new issue