python310Packages.hatchling 0 -> 1 attrpath: python310Packages.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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/68ags0vmfibpsncw3lgawcabp7pbxvrh-packages.json.drv building '/nix/store/68ags0vmfibpsncw3lgawcabp7pbxvrh-packages.json.drv'... Going to be running update for following packages: - python3.10-hatchling-1.11.1 Press Enter key to continue... Running update for: - python3.10-hatchling-1.11.1: UPDATING ... - python3.10-hatchling-1.11.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/hatchling/default.nix b/pkgs/development/python-modules/hatchling/default.nix index 09b7e4f8b1e..12ee0da0a4e 100644 --- a/pkgs/development/python-modules/hatchling/default.nix +++ b/pkgs/development/python-modules/hatchling/default.nix @@ -20,7 +20,7 @@ let pname = "hatchling"; - version = "1.11.1"; + version = "1.13.0"; in buildPythonPackage { inherit pname version; @@ -28,7 +28,7 @@ buildPythonPackage { src = fetchPypi { inherit pname version; - hash = "sha256-n4Q2H3DPOnq5VDsMPsxkIR7SuopganHrakc8HJsI4dA="; + hash = "sha256-+NJ1osxyBzUoa3wuK8NdoFdh5tNpXC+kFlUDlfEMU8c="; }; # listed in backend/src/hatchling/ouroboros.py No auto update branch exists Old version 1.11.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder # runtime , editables , importlib-metadata # < 3.8 , packaging , pathspec , pluggy , tomli # tests , build , python , requests , virtualenv }: let pname = "hatchling"; version = "1.13.0"; in buildPythonPackage { inherit pname version; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-+NJ1osxyBzUoa3wuK8NdoFdh5tNpXC+kFlUDlfEMU8c="; }; # listed in backend/src/hatchling/ouroboros.py propagatedBuildInputs = [ editables packaging pathspec pluggy ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ] ++ 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 packaging 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 ]; }; }