aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/pipenv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/tools/pipenv/default.nix')
-rw-r--r--nixpkgs/pkgs/development/tools/pipenv/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixpkgs/pkgs/development/tools/pipenv/default.nix b/nixpkgs/pkgs/development/tools/pipenv/default.nix
index 4176db2940c..3a6ea879e58 100644
--- a/nixpkgs/pkgs/development/tools/pipenv/default.nix
+++ b/nixpkgs/pkgs/development/tools/pipenv/default.nix
@@ -6,7 +6,7 @@ with python3.pkgs;
let
- runtimeDeps = [
+ runtimeDeps = ps: with ps; [
certifi
setuptools
pip
@@ -14,15 +14,15 @@ let
virtualenv-clone
];
- pythonEnv = python3.withPackages(ps: with ps; runtimeDeps);
+ pythonEnv = python3.withPackages runtimeDeps;
in buildPythonApplication rec {
pname = "pipenv";
- version = "2020.5.28";
+ version = "2020.8.13";
src = fetchPypi {
inherit pname version;
- sha256 = "072lc4nywcf9q9irvanwcz7w0sd9dcyannz208jm6glyj8a271l1";
+ sha256 = "eff0e10eadb330f612edfa5051d3d8e775e9e0e918c3c50361da703bd0daa035";
};
LC_ALL = "en_US.UTF-8";
@@ -36,7 +36,7 @@ in buildPythonApplication rec {
--replace "sys.executable" "'${pythonEnv.interpreter}'"
'';
- propagatedBuildInputs = runtimeDeps;
+ propagatedBuildInputs = runtimeDeps python3.pkgs;
doCheck = true;
checkPhase = ''