pipx 0 -> 1 attrpath: pipx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/46icrwkgvv62lai15skk16q4ny84rv4f-packages.json.drv building '/nix/store/46icrwkgvv62lai15skk16q4ny84rv4f-packages.json.drv'... Going to be running update for following packages: - pipx-1.3.1 Press Enter key to continue... Running update for: - pipx-1.3.1: UPDATING ... - pipx-1.3.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pipx/default.nix b/pkgs/development/python-modules/pipx/default.nix index 330abf560fb7..8a8e8dc86ce9 100644 --- a/pkgs/development/python-modules/pipx/default.nix +++ b/pkgs/development/python-modules/pipx/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "pipx"; - version = "1.3.1"; + version = "1.4.3"; format = "pyproject"; disabled = pythonOlder "3.6"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "pipxproject"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-JZt4I0zw/Kmdgpd5tw6c+fHrHuxkN6jvN3fDmk0//vc="; + hash = "sha256-NxXOeVXwBhGqi4DUABV8UV+cDER0ROBFdgiyYTzdvuo="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.3.1" not present in staging derivation file with contents: { lib , argcomplete , buildPythonPackage , fetchFromGitHub , hatchling , hatch-vcs , importlib-metadata , packaging , pip , platformdirs , pytestCheckHook , pythonOlder , userpath , git }: buildPythonPackage rec { pname = "pipx"; version = "1.4.3"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "pipxproject"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-NxXOeVXwBhGqi4DUABV8UV+cDER0ROBFdgiyYTzdvuo="; }; nativeBuildInputs = [ hatchling hatch-vcs ]; propagatedBuildInputs = [ argcomplete packaging platformdirs userpath ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; nativeCheckInputs = [ pytestCheckHook git ]; preCheck = '' export HOME=$(mktemp -d) ''; pytestFlagsArray = [ "--ignore=tests/test_install_all_packages.py" # start local pypi server and use in tests "--net-pypiserver" ]; disabledTests = [ # 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 "install" "inject" "ensure_null_pythonpath" "missing_interpreter" "cache" "internet" "run" "runpip" "upgrade" "suffix" "legacy_venv" "determination" "json" "test_list_short" ]; meta = with lib; { description = "Install and run Python applications in isolated environments"; homepage = "https://github.com/pipxproject/pipx"; changelog = "https://github.com/pypa/pipx/blob/${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ yshym ]; }; }