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:
Daniel Garzon 2019-04-26 06:05:25 -04:00 committed by Frederik Rietdijk
parent b0c46a21e6
commit a08252919a
1 changed files with 2 additions and 2 deletions

View File

@ -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"
]; ];