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

55 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, python3
}:
with python3.pkgs;
let
runtimeDeps = [
certifi
setuptools
pip
virtualenv
virtualenv-clone
];
2020-05-29 14:47:03 +03:00
pythonEnv = python3.withPackages(ps: with ps; runtimeDeps);
in buildPythonApplication rec {
pname = "pipenv";
2020-06-11 04:11:27 +03:00
version = "2020.6.2";
2017-10-15 19:16:51 +03:00
src = fetchPypi {
inherit pname version;
2020-06-11 04:11:27 +03:00
sha256 = "12s7c3f3k5v1szdhklsxwisf9v3dk4mb9fh7762afpgs8mrrmm3x";
};
2017-10-15 19:16:51 +03:00
LC_ALL = "en_US.UTF-8";
2017-10-15 19:16:51 +03:00
postPatch = ''
# pipenv invokes python in a subprocess to create a virtualenv
2020-05-29 14:47:03 +03: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 14:47:03 +03:00
--replace "sys.executable" "'${pythonEnv.interpreter}'"
'';
propagatedBuildInputs = runtimeDeps;
2017-10-15 19:16:51 +03: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 19:16:51 +03:00
meta = with lib; {
description = "Python Development Workflow for Humans";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ berdario ];
};
}