python3Packages.rich-argparse: 1.7.1 -> 1.7.2

https://github.com/hamdanal/rich-argparse/blob/v1.7.2/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:38:48 +01:00
parent 180a2686df
commit 595234429b
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "rich-argparse";
version = "1.7.1";
version = "1.7.2";
pyproject = true;
src = fetchFromGitHub {
owner = "hamdanal";
repo = "rich-argparse";
tag = "v${version}";
hash = "sha256-gLXFiWgGMDOUbTyoSgTr0XfotVfDxwMqPdsfE4KHzXM=";
hash = "sha256-gzPz8vRxZyZ6Du2r4PdqHjeeLkXZV8eDdX0d+TMrVUc=";
};
build-system = [ hatchling ];
@@ -25,6 +25,11 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# coloring mismatch in fixture
"test_subparsers_usage"
];
pythonImportsCheck = [ "rich_argparse" ];
meta = {