2020-08-24 08:58:42 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonOlder
|
|
|
|
, userpath
|
|
|
|
, argcomplete
|
|
|
|
, packaging
|
2021-01-16 13:52:28 +00:00
|
|
|
, importlib-metadata
|
2020-08-24 08:58:42 +01:00
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pipx";
|
2021-06-05 18:26:34 +01:00
|
|
|
version = "0.16.3";
|
2020-08-24 08:58:42 +01:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
# no tests in the pypi tarball, so we directly fetch from github
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pipxproject";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-06-05 18:26:34 +01:00
|
|
|
sha256 = "1w5pzn5mgl9rr9zbmqza5is4mvjvcgjps1q9qa1mvbnyvakdkr4c";
|
2020-08-24 08:58:42 +01:00
|
|
|
};
|
|
|
|
|
2021-01-16 13:52:28 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
userpath
|
|
|
|
argcomplete
|
|
|
|
packaging
|
|
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
|
|
importlib-metadata
|
|
|
|
];
|
2020-08-24 08:58:42 +01:00
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
2021-06-05 18:26:34 +01:00
|
|
|
pytestFlagsArray = [
|
|
|
|
"--ignore=tests/test_install_all_packages.py"
|
|
|
|
# start local pypi server and use in tests
|
|
|
|
"--net-pypiserver"
|
|
|
|
];
|
2020-08-24 08:58:42 +01:00
|
|
|
disabledTests = [
|
2021-06-05 18:26:34 +01:00
|
|
|
# disable tests which are difficult to emulate due to shell manipulations
|
|
|
|
"path_warning"
|
|
|
|
"script_from_internet"
|
|
|
|
"ensure_null_pythonpath"
|
|
|
|
# disable tests, which require internet connection
|
2020-08-24 08:58:42 +01:00
|
|
|
"install"
|
|
|
|
"inject"
|
|
|
|
"ensure_null_pythonpath"
|
|
|
|
"missing_interpreter"
|
|
|
|
"cache"
|
|
|
|
"internet"
|
2021-01-16 13:52:28 +00:00
|
|
|
"run"
|
2020-08-24 08:58:42 +01:00
|
|
|
"runpip"
|
|
|
|
"upgrade"
|
2020-10-18 15:11:30 +01:00
|
|
|
"suffix"
|
|
|
|
"legacy_venv"
|
2021-01-16 13:52:28 +00:00
|
|
|
"determination"
|
2021-05-09 13:02:28 +01:00
|
|
|
"json"
|
2020-08-24 08:58:42 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description =
|
|
|
|
"Install and Run Python Applications in Isolated Environments";
|
|
|
|
homepage = "https://github.com/pipxproject/pipx";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ yevhenshymotiuk ];
|
|
|
|
};
|
|
|
|
}
|