pipenv: fix package (#60045)
* pipenv: add virualenv to propagatedBuildInputs. * pipenv: add current directory to PYTHONPATH. * pipenv: remove pew from propagatedBuildInputs.
This commit is contained in:
parent
b0c46a21e6
commit
a08252919a
|
@ -15,15 +15,15 @@ buildPythonApplication rec {
|
||||||
flake8
|
flake8
|
||||||
invoke
|
invoke
|
||||||
parver
|
parver
|
||||||
pew
|
|
||||||
pip
|
pip
|
||||||
requests
|
requests
|
||||||
|
virtualenv
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
makeWrapperArgs = [
|
makeWrapperArgs = [
|
||||||
"--set PYTHONPATH \"$PYTHONPATH\""
|
"--set PYTHONPATH \".:$PYTHONPATH\""
|
||||||
"--set PIP_IGNORE_INSTALLED 1"
|
"--set PIP_IGNORE_INSTALLED 1"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue