python312Packages.packaging 23.2 -> 24.0 https://repology.org/project/python:packaging/versions attrpath: python312Packages.packaging 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/qq2cddm6krgkfwla2fd113ffqfpjz4cc-packages.json.drv building '/nix/store/qq2cddm6krgkfwla2fd113ffqfpjz4cc-packages.json.drv'... Going to be running update for following packages: - python3.12-packaging-23.2 Press Enter key to continue... Running update for: - python3.12-packaging-23.2: UPDATING ... - python3.12-packaging-23.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/packaging/default.nix b/pkgs/development/python-modules/packaging/default.nix index 123c1230fc87..32ce7fd8accb 100644 --- a/pkgs/development/python-modules/packaging/default.nix +++ b/pkgs/development/python-modules/packaging/default.nix @@ -14,14 +14,14 @@ let packaging = buildPythonPackage rec { pname = "packaging"; - version = "23.2"; + version = "24.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-BI+w6UBQNlGOqvSKVZU8dQwR4aG2jg3RqdYu0MCSz8U="; + hash = "sha256-64LF4+ViCQdHZuaIW7BLjDigwBXQowA26+fs40yZiek="; }; nativeBuildInputs = [ No auto update branch exists Old version 23.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder # build-system , flit-core # tests , pretend , pytestCheckHook }: let packaging = buildPythonPackage rec { pname = "packaging"; version = "24.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-64LF4+ViCQdHZuaIW7BLjDigwBXQowA26+fs40yZiek="; }; nativeBuildInputs = [ flit-core ]; nativeCheckInputs = [ pytestCheckHook pretend ]; pythonImportsCheck = [ "packaging" "packaging.metadata" "packaging.requirements" "packaging.specifiers" "packaging.tags" "packaging.version" ]; # Prevent circular dependency with pytest doCheck = false; passthru.tests = packaging.overridePythonAttrs (_: { doCheck = true; }); meta = with lib; { changelog = "https://github.com/pypa/packaging/blob/${version}/CHANGELOG.rst"; description = "Core utilities for Python packages"; downloadPage = "https://github.com/pypa/packaging"; homepage = "https://packaging.pypa.io/"; license = with licenses; [ bsd2 asl20 ]; maintainers = teams.python.members ++ (with maintainers; [ bennofs ]); }; }; in packaging