3
0
Fork 0
forked from mirrors/nixpkgs

writers.makePythonWriter: fix interpreter executable

This commit is contained in:
Artturin 2023-06-17 22:49:06 +03:00
parent d6e221f079
commit 3ea5e83373

View file

@ -264,8 +264,8 @@ let
makeScriptWriter {
interpreter =
if libraries == []
then "${python}/bin/python"
else "${python.withPackages (ps: libraries)}/bin/python"
then python.interpreter
else (python.withPackages (ps: libraries)).interpreter
;
check = optionalString python.isPy3k (writeDash "pythoncheck.sh" ''
exec ${buildPythonPackages.flake8}/bin/flake8 --show-source ${ignoreAttribute} "$1"