Merge pull request #89293 from das-g/refactor-pipenv-runtimeDeps

pipenv: refactor runtimeDeps
This commit is contained in:
Lassulus 2020-08-22 16:11:45 +02:00 committed by GitHub
commit d626d15282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ with python3.pkgs;
let let
runtimeDeps = [ runtimeDeps = ps: with ps; [
certifi certifi
setuptools setuptools
pip pip
@ -14,7 +14,7 @@ let
virtualenv-clone virtualenv-clone
]; ];
pythonEnv = python3.withPackages(ps: with ps; runtimeDeps); pythonEnv = python3.withPackages runtimeDeps;
in buildPythonApplication rec { in buildPythonApplication rec {
pname = "pipenv"; pname = "pipenv";
@ -36,7 +36,7 @@ in buildPythonApplication rec {
--replace "sys.executable" "'${pythonEnv.interpreter}'" --replace "sys.executable" "'${pythonEnv.interpreter}'"
''; '';
propagatedBuildInputs = runtimeDeps; propagatedBuildInputs = runtimeDeps python3.pkgs;
doCheck = true; doCheck = true;
checkPhase = '' checkPhase = ''