python312Packages.jaraco-collections 4.3.0 -> 5.0.0 https://github.com/jaraco/jaraco.collections/releases attrpath: python312Packages.jaraco-collections 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/c922bvywcgvv84w2y1ykwnjhl9jva7a4-packages.json.drv building '/nix/store/c922bvywcgvv84w2y1ykwnjhl9jva7a4-packages.json.drv'... Going to be running update for following packages: - python3.12-jaraco-collections-4.3.0 Press Enter key to continue... Running update for: - python3.12-jaraco-collections-4.3.0: UPDATING ... - python3.12-jaraco-collections-4.3.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/jaraco-collections/default.nix b/pkgs/development/python-modules/jaraco-collections/default.nix index 3c0d0b6a9aa6..bab89a3f7a60 100644 --- a/pkgs/development/python-modules/jaraco-collections/default.nix +++ b/pkgs/development/python-modules/jaraco-collections/default.nix @@ -9,13 +9,13 @@ buildPythonPackage rec { pname = "jaraco-collections"; - version = "4.3.0"; + version = "5.0.0"; format = "pyproject"; src = fetchPypi { pname = "jaraco.collections"; inherit version; - hash = "sha256-dP/CP8z+5N4KLr9VajNnW2o8AD1jNZR9MSKgvIgiyOQ="; + hash = "sha256-FoDo0J8pX2Jce6kmiAF1om/b5wkrTHbRmOMEdrIc/mg="; }; postPatch = '' No auto update branch exists Old version 4.3.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , setuptools , setuptools-scm , jaraco-classes , jaraco-text }: buildPythonPackage rec { pname = "jaraco-collections"; version = "5.0.0"; format = "pyproject"; src = fetchPypi { pname = "jaraco.collections"; inherit version; hash = "sha256-FoDo0J8pX2Jce6kmiAF1om/b5wkrTHbRmOMEdrIc/mg="; }; postPatch = '' # break dependency cycle sed -i "/'jaraco.text',/d" setup.cfg ''; nativeBuildInputs = [ setuptools setuptools-scm ]; propagatedBuildInputs = [ jaraco-classes jaraco-text ]; pythonNamespaces = [ "jaraco" ]; doCheck = false; pythonImportsCheck = [ "jaraco.collections" ]; meta = with lib; { description = "Models and classes to supplement the stdlib 'collections' module"; homepage = "https://github.com/jaraco/jaraco.collections"; changelog = "https://github.com/jaraco/jaraco.collections/blob/v${version}/NEWS.rst"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }