nixpkgs/pkgs/development/tools/pipenv/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
2022-09-06 16:57:33 +00:00
, stdenv
, python3
2023-05-25 18:37:59 +00:00
, fetchPypi
, installShellFiles
}:
with python3.pkgs;
let
runtimeDeps = ps: with ps; [
certifi
setuptools
pip
virtualenv
virtualenv-clone
2022-09-06 16:57:33 +00:00
]
++ lib.optionals stdenv.hostPlatform.isAndroid [
pyjnius
];
pythonEnv = python3.withPackages runtimeDeps;
in buildPythonApplication rec {
pname = "pipenv";
2023-02-06 23:40:33 +00:00
version = "2023.2.4";
2017-10-15 16:16:51 +00:00
src = fetchPypi {
inherit pname version;
2023-02-06 23:40:33 +00:00
sha256 = "sha256-GKPrpRnjbVnw1af5xCvSaFIeS5t7PRvWrc8TFWkyMnU=";
};
2017-10-15 16:16:51 +00:00
LC_ALL = "en_US.UTF-8";
2017-10-15 16:16:51 +00:00
nativeBuildInputs = [ installShellFiles ];
postPatch = ''
# pipenv invokes python in a subprocess to create a virtualenv
2020-05-29 11:47:03 +00:00
# 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 \
2020-05-29 11:47:03 +00:00
--replace "sys.executable" "'${pythonEnv.interpreter}'"
'';
propagatedBuildInputs = runtimeDeps python3.pkgs;
2017-10-15 16:16:51 +00:00
2022-01-16 13:31:42 +00:00
postInstall = ''
installShellCompletion --cmd pipenv \
--bash <(_PIPENV_COMPLETE=bash_source $out/bin/pipenv) \
--zsh <(_PIPENV_COMPLETE=zsh_source $out/bin/pipenv) \
--fish <(_PIPENV_COMPLETE=fish_source $out/bin/pipenv)
2022-01-16 13:31:42 +00:00
'';
doCheck = true;
checkPhase = ''
export HOME=$(mktemp -d)
cp -r --no-preserve=mode ${wheel.src} $HOME/wheel-src
$out/bin/pipenv install $HOME/wheel-src
'';
2017-10-15 16:16:51 +00:00
meta = with lib; {
description = "Python Development Workflow for Humans";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ berdario ];
};
}