{ lib , buildPythonPackage , fetchFromGitHub , pythonOlder , userpath , argcomplete , packaging , pytestCheckHook }: buildPythonPackage rec { pname = "pipx"; version = "0.15.6.0"; disabled = pythonOlder "3.6"; # no tests in the pypi tarball, so we directly fetch from github src = fetchFromGitHub { owner = "pipxproject"; repo = pname; rev = version; sha256 = "1yffswayjfkmq86ygisja0mkg55pqj9pdml5nc0z05222sfnvn1a"; }; propagatedBuildInputs = [ userpath argcomplete packaging ]; checkInputs = [ pytestCheckHook ]; preCheck = '' export HOME=$(mktemp -d) ''; # disable tests, which require internet connection disabledTests = [ "install" "inject" "ensure_null_pythonpath" "missing_interpreter" "cache" "internet" "runpip" "upgrade" "suffix" "legacy_venv" ]; 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 ]; }; }