xonsh: add PYTHONPATH

This commit is contained in:
Artturin 2021-07-30 04:19:49 +03:00
parent c3141f24f0
commit 53e85e512b
1 changed files with 13 additions and 0 deletions

View File

@ -29,6 +29,19 @@ python3Packages.buildPythonApplication rec {
find scripts -name 'xonsh*' -exec sed -i -e "s|env -S|env|" {} \;
find -name "*.xsh" | xargs sed -ie 's|/usr/bin/env|${coreutils}/bin/env|'
patchShebangs .
substituteInPlace scripts/xon.sh \
--replace 'python' "${python3Packages.python}/bin/python"
'';
makeWrapperArgs = [
"--prefix PYTHONPATH : ${placeholder "out"}/lib/${python3Packages.python.libPrefix}/site-packages"
];
postInstall = ''
wrapProgram $out/bin/xon.sh \
$makeWrapperArgs
'';
disabledTests = [