1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #266877 from bct/pipenv-2023.10.24

pipenv: 2023.2.4 -> 2023.10.24
This commit is contained in:
Sandro 2024-06-21 17:31:59 +02:00 committed by GitHub
commit 90338afd61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,14 +24,14 @@ let
in buildPythonApplication rec {
pname = "pipenv";
version = "2023.2.4";
version = "2023.10.24";
format = "pyproject";
src = fetchFromGitHub {
owner = "pypa";
repo = "pipenv";
rev = "refs/tags/v${version}";
hash = "sha256-jZOBu4mWyu8U6CGqtYgfcCCDSa0pGqoZEFnXl5IO+JY=";
hash = "sha256-b1EqCrgGygdG08zzastgcYGnXDKoEYNvm5xjDLzlAXo=";
};
env.LC_ALL = "en_US.UTF-8";
@ -47,7 +47,7 @@ in buildPythonApplication rec {
# and to call setup.py.
# It would use sys.executable, which in our case points to a python that
# does not have the required dependencies.
substituteInPlace pipenv/core.py \
substituteInPlace pipenv/utils/virtualenv.py \
--replace "sys.executable" "'${pythonEnv.interpreter}'"
'';