python310Packages.coverage 0 -> 1 attrpath: python310Packages.coverage 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/dmw91670pm9w8kbp49s2gbjrb4hkbh5b-packages.json.drv building '/nix/store/dmw91670pm9w8kbp49s2gbjrb4hkbh5b-packages.json.drv'... Going to be running update for following packages: - python3.10-coverage-7.3.1 Press Enter key to continue... Running update for: - python3.10-coverage-7.3.1: UPDATING ... - python3.10-coverage-7.3.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/coverage/default.nix b/pkgs/development/python-modules/coverage/default.nix index cd761b45e101..abf1a406162c 100644 --- a/pkgs/development/python-modules/coverage/default.nix +++ b/pkgs/development/python-modules/coverage/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "coverage"; - version = "7.3.1"; + version = "7.4.0"; format = "setuptools"; # uses f strings disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; - hash = "sha256-bLf+FYHetnt4LBUxNlQeIJAaoxLO7a8UZ9yzUlV4eVI="; + hash = "sha256-cHwPWMsXEriAns4ytomW7h5gn3G9FGFb2Ph6EpPLYQ4="; }; # No tests in archive No auto update branch exists Old version 7.3.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , mock , pythonOlder , setuptools }: buildPythonPackage rec { pname = "coverage"; version = "7.3.2"; pyproject = true; # uses f strings disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; hash = "sha256-vjKtKTQbAXDnlcpZDhwH6B/AYctbEMdM5yA0kUhEBO8="; }; nativeBuildInputs = [ setuptools ]; # No tests in archive doCheck = false; nativeCheckInputs = [ mock ]; meta = { description = "Code coverage measurement for python"; homepage = "https://coverage.readthedocs.io/"; license = lib.licenses.bsd3; }; }