2019-05-04 14:23:59 +01:00
|
|
|
{ lib
|
2019-10-23 11:33:23 +01:00
|
|
|
, python3
|
2019-05-04 14:23:59 +01:00
|
|
|
}:
|
|
|
|
|
2019-10-23 11:33:23 +01:00
|
|
|
with python3.pkgs;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2020-05-31 19:35:15 +01:00
|
|
|
runtimeDeps = ps: with ps; [
|
2019-10-23 11:33:23 +01:00
|
|
|
certifi
|
|
|
|
setuptools
|
|
|
|
pip
|
|
|
|
virtualenv
|
|
|
|
virtualenv-clone
|
|
|
|
];
|
|
|
|
|
2020-05-31 19:35:15 +01:00
|
|
|
pythonEnv = python3.withPackages runtimeDeps;
|
2019-10-23 11:33:23 +01:00
|
|
|
|
|
|
|
in buildPythonApplication rec {
|
2019-03-06 17:56:44 +00:00
|
|
|
pname = "pipenv";
|
2020-08-27 08:58:25 +01:00
|
|
|
version = "2020.8.13";
|
2017-10-15 17:16:51 +01:00
|
|
|
|
2019-03-06 17:56:44 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-27 08:58:25 +01:00
|
|
|
sha256 = "eff0e10eadb330f612edfa5051d3d8e775e9e0e918c3c50361da703bd0daa035";
|
2019-03-06 17:56:44 +00:00
|
|
|
};
|
2017-10-15 17:16:51 +01:00
|
|
|
|
2019-03-06 17:56:44 +00:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
2017-10-15 17:16:51 +01:00
|
|
|
|
2019-10-23 11:33:23 +01:00
|
|
|
postPatch = ''
|
|
|
|
# pipenv invokes python in a subprocess to create a virtualenv
|
2020-05-29 12:47:03 +01: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.
|
2019-10-23 11:33:23 +01:00
|
|
|
substituteInPlace pipenv/core.py \
|
2020-05-29 12:47:03 +01:00
|
|
|
--replace "sys.executable" "'${pythonEnv.interpreter}'"
|
2019-10-23 11:33:23 +01:00
|
|
|
'';
|
|
|
|
|
2020-05-31 19:35:15 +01:00
|
|
|
propagatedBuildInputs = runtimeDeps python3.pkgs;
|
2017-10-15 17:16:51 +01:00
|
|
|
|
2019-11-13 15:28:27 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
2019-11-13 18:10:16 +00:00
|
|
|
export HOME=$(mktemp -d)
|
2019-11-13 20:01:30 +00:00
|
|
|
cp -r --no-preserve=mode ${wheel.src} $HOME/wheel-src
|
|
|
|
$out/bin/pipenv install $HOME/wheel-src
|
2019-11-13 15:28:27 +00:00
|
|
|
'';
|
2017-10-15 17:16:51 +01:00
|
|
|
|
2019-05-04 14:23:59 +01:00
|
|
|
meta = with lib; {
|
2019-03-06 17:56:44 +00:00
|
|
|
description = "Python Development Workflow for Humans";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ berdario ];
|
|
|
|
};
|
|
|
|
}
|