virtualenvwrapper: only add Python to $PATH, fixes #26982
This commit is contained in:
parent
43ca91106d
commit
196273e177
|
@ -25215,9 +25215,9 @@ in {
|
||||||
stevedore
|
stevedore
|
||||||
virtualenv
|
virtualenv
|
||||||
virtualenv-clone
|
virtualenv-clone
|
||||||
] ++ optional isPy26 argparse;
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
for file in "virtualenvwrapper.sh" "virtualenvwrapper_lazy.sh"; do
|
for file in "virtualenvwrapper.sh" "virtualenvwrapper_lazy.sh"; do
|
||||||
substituteInPlace "$file" --replace "which" "${pkgs.which}/bin/which"
|
substituteInPlace "$file" --replace "which" "${pkgs.which}/bin/which"
|
||||||
|
|
||||||
|
@ -25248,7 +25248,7 @@ in {
|
||||||
|
|
||||||
# WARNING: Don't indent the lines below because that would break EOF
|
# WARNING: Don't indent the lines below because that would break EOF
|
||||||
cat > "$wrapper" << EOF
|
cat > "$wrapper" << EOF
|
||||||
export PATH="$PATH:\$PATH"
|
export PATH="${python}/bin:\$PATH"
|
||||||
export VIRTUALENVWRAPPER_PYTHONPATH="$PYTHONPATH:$(toPythonPath $out)"
|
export VIRTUALENVWRAPPER_PYTHONPATH="$PYTHONPATH:$(toPythonPath $out)"
|
||||||
source "$wrapped"
|
source "$wrapped"
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in New Issue