python312Packages.hatchling 1.21.0 -> 1.21.1 https://repology.org/project/hatchling/versions attrpath: python312Packages.hatchling 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/r2pr9qgfx9zk4n6zrg4v5cqv3pb2ghjg-packages.json.drv building '/nix/store/r2pr9qgfx9zk4n6zrg4v5cqv3pb2ghjg-packages.json.drv'... Going to be running update for following packages: - python3.12-hatchling-1.21.0 Press Enter key to continue... Running update for: - python3.12-hatchling-1.21.0: UPDATING ... - python3.12-hatchling-1.21.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/hatchling/default.nix b/pkgs/development/python-modules/hatchling/default.nix index 221c266287f9..6dca631c967e 100644 --- a/pkgs/development/python-modules/hatchling/default.nix +++ b/pkgs/development/python-modules/hatchling/default.nix @@ -20,13 +20,13 @@ buildPythonPackage rec { pname = "hatchling"; - version = "1.21.0"; + version = "1.21.1"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-XAhncjV6UHI7gl/V2lJ4rH42l833eX0HVBpskLb/dUw="; + hash = "sha256-u6RARToiTn1EeEV/oujYw2M3Zbr6Apdaa1O5v5F5gLw="; }; # listed in backend/pyproject.toml No auto update branch exists Old version 1.21.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder # runtime , editables , packaging , pathspec , pluggy , tomli , trove-classifiers # tests , build , python , requests , virtualenv }: buildPythonPackage rec { pname = "hatchling"; version = "1.21.1"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-u6RARToiTn1EeEV/oujYw2M3Zbr6Apdaa1O5v5F5gLw="; }; # listed in backend/pyproject.toml propagatedBuildInputs = [ editables packaging pathspec pluggy trove-classifiers ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; pythonImportsCheck = [ "hatchling" "hatchling.build" ]; # tries to fetch packages from the internet doCheck = false; # listed in /backend/tests/downstream/requirements.txt nativeCheckInputs = [ build requests virtualenv ]; preCheck = '' export HOME=$TMPDIR ''; checkPhase = '' runHook preCheck ${python.interpreter} tests/downstream/integrate.py runHook postCheck ''; meta = with lib; { description = "Modern, extensible Python build backend"; homepage = "https://hatch.pypa.io/latest/"; changelog = "https://github.com/pypa/hatch/releases/tag/hatchling-v${version}"; license = licenses.mit; maintainers = with maintainers; [ hexa ofek ]; }; }