gcovr 0 -> 1 attrpath: gcovr 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/1q1k8srwwlj7s1wg9lampnyrkx0kji5c-packages.json.drv building '/nix/store/1q1k8srwwlj7s1wg9lampnyrkx0kji5c-packages.json.drv'... Going to be running update for following packages: - gcovr-6.0 Press Enter key to continue... Running update for: - gcovr-6.0: UPDATING ... - gcovr-6.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/gcovr/default.nix b/pkgs/development/python-modules/gcovr/default.nix index 97105a6a3a2e..2bdb04b38476 100644 --- a/pkgs/development/python-modules/gcovr/default.nix +++ b/pkgs/development/python-modules/gcovr/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "gcovr"; - version = "6.0"; + version = "7.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-hjjV9E3vEOOOMWbIozvvZkPsIEaH4Kx9NFzkGpjFdQs="; + hash = "sha256-4+lctWyojbvnQctdaaor5JTrL8KgnuT2UWRKZw7lrrM="; }; propagatedBuildInputs = [ No auto update branch exists Old version 6.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , colorlog , jinja2 , lxml , pygments , pythonOlder , tomli }: buildPythonPackage rec { pname = "gcovr"; version = "7.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-4+lctWyojbvnQctdaaor5JTrL8KgnuT2UWRKZw7lrrM="; }; propagatedBuildInputs = [ colorlog jinja2 lxml pygments ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; # There are no unit tests in the pypi tarball. Most of the unit tests on the # github repository currently only work with gcc5, so we just disable them. # See also: https://github.com/gcovr/gcovr/issues/206 doCheck = false; pythonImportsCheck = [ "gcovr" "gcovr.configuration" ]; meta = with lib; { description = "Python script for summarizing gcov data"; mainProgram = "gcovr"; homepage = "https://www.gcovr.com/"; changelog = "https://github.com/gcovr/gcovr/blob/${version}/CHANGELOG.rst"; license = licenses.bsd0; maintainers = with maintainers; [ ]; }; }