2022-12-26T17:18:11 commitizen 0 -> 1 2022-12-26T17:18:13 attrpath: commitizen 2022-12-26T17:18:14 Checking auto update branch... 2022-12-26T17:18:17 [version] 2022-12-26T17:18:17 [version] skipping because derivation has updateScript 2022-12-26T17:18:17 [rustCrateVersion] 2022-12-26T17:18:17 [rustCrateVersion] No cargoSha256 found 2022-12-26T17:18:17 [golangModuleVersion] 2022-12-26T17:18:17 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-26T17:18:17 [updateScript] 2022-12-26T17:18:20 [updateScript] Success 2022-12-26T17:18:20 [updateScript] this derivation will be built: /nix/store/68h030y53zf9nfsjbghg4h1myszcv88m-packages.json.drv building '/nix/store/68h030y53zf9nfsjbghg4h1myszcv88m-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! 2022-12-26T17:18:20 2022-12-26T17:18:20 [quotedUrls] 2022-12-26T17:18:20 [quotedUrls] nothing found to replace 2022-12-26T17:18:21 Diff after rewrites: diff --git a/pkgs/applications/version-management/commitizen/default.nix b/pkgs/applications/version-management/commitizen/default.nix index 3c0cf0ecec0..dc0d804d398 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.38.0"; src = fetchFromGitHub { owner = "commitizen-tools"; repo = pname; rev = "v${version}"; - hash = "sha256-wo1I6QDWLxByHISmkPdass+BcKh0oxR5hD31UN/5+WQ="; + hash = "sha256-W+k+hqH0TKQAXf1Em6A1/VdqzJkhYp99I3lbqH6iDDc="; deepClone = true; }; 2022-12-26T17:19:47 Old version 2.37.0" not present in staging derivation file with contents: { buildPythonApplication , colorama , decli , fetchFromGitHub , git , jinja2 , lib , packaging , poetry-core , 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-Fri5WdLfDCn3NOtCGneKnAN+eOkLAJgPYBR+WBmc/bo="; deepClone = true; }; format = "pyproject"; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ termcolor questionary colorama decli tomlkit jinja2 pyyaml argcomplete typing-extensions packaging ]; doCheck = true; checkInputs = [ pre-commit 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" ]; passthru.updateScript = nix-update-script { attrPath = pname; }; 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 ]; }; }