mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
91 lines
1.8 KiB
Nix
91 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, python3
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
let
|
|
|
|
runtimeDeps = ps: with ps; [
|
|
certifi
|
|
setuptools
|
|
pip
|
|
virtualenv
|
|
virtualenv-clone
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isAndroid [
|
|
pyjnius
|
|
];
|
|
|
|
pythonEnv = python3.withPackages runtimeDeps;
|
|
|
|
in buildPythonApplication rec {
|
|
pname = "pipenv";
|
|
version = "2023.2.4";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pypa";
|
|
repo = "pipenv";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-jZOBu4mWyu8U6CGqtYgfcCCDSa0pGqoZEFnXl5IO+JY=";
|
|
};
|
|
|
|
env.LC_ALL = "en_US.UTF-8";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
postPatch = ''
|
|
# pipenv invokes python in a subprocess to create a virtualenv
|
|
# 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 \
|
|
--replace "sys.executable" "'${pythonEnv.interpreter}'"
|
|
'';
|
|
|
|
propagatedBuildInputs = runtimeDeps python3.pkgs;
|
|
|
|
preCheck = ''
|
|
export HOME="$TMPDIR"
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
pytz
|
|
requests
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_convert_deps_to_pip"
|
|
"test_download_file"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/integration"
|
|
];
|
|
|
|
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)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python Development Workflow for Humans";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ berdario ];
|
|
};
|
|
}
|