python311Packages.tuf 0 -> 1 attrpath: python311Packages.tuf 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] Going to be running update for following packages: - python3.11-tuf-3.1.0 Press Enter key to continue... Running update for: - python3.11-tuf-3.1.0: UPDATING ... - python3.11-tuf-3.1.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/tuf/default.nix b/pkgs/development/python-modules/tuf/default.nix index b6965a7f42e2..9f4deed575e3 100644 --- a/pkgs/development/python-modules/tuf/default.nix +++ b/pkgs/development/python-modules/tuf/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "tuf"; - version = "3.1.0"; + version = "3.1.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "theupdateframework"; repo = "python-tuf"; rev = "refs/tags/v${version}"; - hash = "sha256-IGF/8RdX7Oxl6gdqPGN1w/6q4zaei+MnYXBZepB4KUA="; + hash = "sha256-HiF/b6aOhDhhQqYx/bjMXHABxmAJY4vkLlTheiL8zEo="; }; postPatch = '' No auto update branch exists Old version 3.1.0" not present in master derivation file with contents: { lib , buildPythonPackage , ed25519 , fetchFromGitHub , hatchling , pytestCheckHook , pythonOlder , requests , securesystemslib }: buildPythonPackage rec { pname = "tuf"; version = "3.1.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "theupdateframework"; repo = "python-tuf"; rev = "refs/tags/v${version}"; hash = "sha256-HiF/b6aOhDhhQqYx/bjMXHABxmAJY4vkLlTheiL8zEo="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace-fail "hatchling==" "hatchling>=" ''; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ requests securesystemslib ] ++ securesystemslib.optional-dependencies.pynacl ++ securesystemslib.optional-dependencies.crypto; nativeCheckInputs = [ ed25519 pytestCheckHook ]; pythonImportsCheck = [ "tuf" ]; preCheck = '' cd tests ''; meta = with lib; { description = "Python reference implementation of The Update Framework (TUF)"; homepage = "https://github.com/theupdateframework/python-tuf"; changelog = "https://github.com/theupdateframework/python-tuf/blob/v${version}/docs/CHANGELOG.md"; license = with licenses; [ asl20 mit ]; maintainers = with maintainers; [ fab ]; }; }