python3Packages.commitizen: 2.21.2 -> 2.29.2

This commit is contained in:
Bernardo Meurer 2022-07-29 10:55:47 -07:00
parent dc26c8a444
commit 8e66ff7ed9

View File

@ -16,6 +16,7 @@
, termcolor , termcolor
, tomlkit , tomlkit
, typing-extensions , typing-extensions
, chardet
, argcomplete, fetchPypi , argcomplete, fetchPypi
}: }:
@ -34,13 +35,13 @@ in
buildPythonApplication rec { buildPythonApplication rec {
pname = "commitizen"; pname = "commitizen";
version = "2.21.2"; version = "2.29.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "commitizen-tools"; owner = "commitizen-tools";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-7S676bpSrlAqpbgDj9nAo0WjeitbbHoYc693MJm35Js="; hash = "sha256-4mK+GA1rfctJkMv4ZMfXE/qih/9fF0kwT6bIcLVB/Bk=";
deepClone = true; deepClone = true;
}; };
@ -49,6 +50,7 @@ buildPythonApplication rec {
nativeBuildInputs = [ poetry ]; nativeBuildInputs = [ poetry ];
propagatedBuildInputs = [ propagatedBuildInputs = [
chardet
termcolor termcolor
questionary questionary
colorama colorama
@ -85,6 +87,8 @@ buildPythonApplication rec {
"test_bump_on_git_with_hooks_no_verify_disabled" "test_bump_on_git_with_hooks_no_verify_disabled"
"test_bump_on_git_with_hooks_no_verify_enabled" "test_bump_on_git_with_hooks_no_verify_enabled"
"test_bump_patch_increment" "test_bump_patch_increment"
"test_bump_pre_commit_changelog"
"test_bump_pre_commit_changelog_fails_always"
"test_bump_tag_exists_raises_exception" "test_bump_tag_exists_raises_exception"
"test_bump_when_bumpping_is_not_support" "test_bump_when_bumpping_is_not_support"
"test_bump_when_version_inconsistent_in_version_files" "test_bump_when_version_inconsistent_in_version_files"