commitizen 0 -> 1 attrpath: commitizen 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/y3m72wrv1y3abv9p864fw956fshzbn25-packages.json.drv these 3 paths will be fetched (0.94 MiB download, 3.87 MiB unpacked): /nix/store/4w0pg2g8aq2fghhnm96r417zzpwl9wfs-nixpkgs-review-2.8.0 /nix/store/hc0g6r0yr5vk2qz07ihl9v2x9zd03i63-nixpkgs-fmt-1.3.0 /nix/store/k86737zfn2s05phxbvyk63kisn35mysd-nix-update-0.13.0 copying path '/nix/store/hc0g6r0yr5vk2qz07ihl9v2x9zd03i63-nixpkgs-fmt-1.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/4w0pg2g8aq2fghhnm96r417zzpwl9wfs-nixpkgs-review-2.8.0' from 'https://cache.nixos.org'... copying path '/nix/store/k86737zfn2s05phxbvyk63kisn35mysd-nix-update-0.13.0' from 'https://cache.nixos.org'... building '/nix/store/y3m72wrv1y3abv9p864fw956fshzbn25-packages.json.drv'... Going to be running update for following packages: - commitizen-2.37.0 Press Enter key to continue... Running update for: - commitizen-2.37.0: UPDATING ... - commitizen-2.37.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/applications/version-management/commitizen/default.nix b/pkgs/applications/version-management/commitizen/default.nix index b2b459589b3..7ac626e67db 100644 --- a/pkgs/applications/version-management/commitizen/default.nix +++ b/pkgs/applications/version-management/commitizen/default.nix @@ -22,13 +22,13 @@ buildPythonApplication rec { pname = "commitizen"; - version = "2.37.0"; + version = "2.39.1"; src = fetchFromGitHub { owner = "commitizen-tools"; repo = pname; rev = "v${version}"; - hash = "sha256-wo1I6QDWLxByHISmkPdass+BcKh0oxR5hD31UN/5+WQ="; + hash = "sha256-QQIYyg2zwV7cfFxGHVsLiTRBgTGs3O7OJcmURvfY3LQ="; deepClone = true; }; No auto update branch exists Old version 2.37.0" not present in staging derivation file with contents: { buildPythonApplication , colorama , decli , fetchFromGitHub , git , jinja2 , lib , packaging , poetry-core , py , pytest-freezegun , pytest-mock , pytest-regressions , pytestCheckHook , pyyaml , questionary , termcolor , tomlkit , typing-extensions , argcomplete , nix-update-script , pre-commit }: buildPythonApplication rec { pname = "commitizen"; version = "2.38.0"; src = fetchFromGitHub { owner = "commitizen-tools"; repo = pname; rev = "v${version}"; hash = "sha256-W+k+hqH0TKQAXf1Em6A1/VdqzJkhYp99I3lbqH6iDDc="; deepClone = true; }; format = "pyproject"; nativeBuildInputs = [ poetry-core ]; postPatch = '' substituteInPlace pyproject.toml \ --replace 'charset-normalizer = "^2.1.0"' 'charset-normalizer = "*"' ''; propagatedBuildInputs = [ termcolor questionary colorama decli tomlkit jinja2 pyyaml argcomplete typing-extensions packaging ]; doCheck = true; checkInputs = [ pre-commit py pytestCheckHook pytest-freezegun pytest-mock pytest-regressions argcomplete git ]; # the tests require a functional git installation # which requires a valid HOME directory. preCheck = '' export HOME="$(mktemp -d)" git config --global user.name "Nix Builder" git config --global user.email "nix-builder@nixos.org" git init . ''; # NB: These tests require complex GnuPG setup disabledTests = [ "test_bump_minor_increment_signed" "test_bump_minor_increment_signed_config_file" "test_bump_on_git_with_hooks_no_verify_enabled" "test_bump_on_git_with_hooks_no_verify_disabled" "test_bump_pre_commit_changelog" "test_bump_pre_commit_changelog_fails_always" "test_get_commits_with_signature" # fatal: not a git repository (or any of the parent directories): .git "test_commitizen_debug_excepthook" ]; passthru.updateScript = nix-update-script { }; meta = with lib; { description = "Tool to create committing rules for projects, auto bump versions, and generate changelogs"; homepage = "https://github.com/commitizen-tools/commitizen"; changelog = "https://github.com/commitizen-tools/commitizen/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ lovesegfault anthonyroussel ]; }; }