python310Packages.rich-click: 1.5.2 -> 1.6.0

Diff: https://github.com/ewels/rich-click/compare/refs/tags/v1.5.2...v1.6.0

Changelog: https://github.com/ewels/rich-click/blob/v1.6.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-05 23:44:15 +01:00
parent 421c55aa71
commit 51cdaaa0d9

View file

@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "rich-click";
version = "1.5.2";
version = "1.6.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "ewels";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-eW5CR7ReVsFLJ09F4EUQbvFB+GdlnTay0bX4NNLQ0xo=";
hash = "sha256-l8tMyxSkh4eckD21NofK9FBgeGKAqZB0J3B98HpWZ0s=";
};
propagatedBuildInputs = [
@ -26,17 +26,6 @@ buildPythonPackage rec {
rich
];
passthru.optional-dependencies = {
typer = [
typer
];
};
postPatch = ''
substituteInPlace setup.py \
--replace "typer>=0.4,<0.6" "typer>=0.4"
'';
# Module has no test
doCheck = false;
@ -47,7 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module to format click help output nicely with rich";
homepage = "https://github.com/ewels/rich-click";
changelog = "https://github.com/ewels/rich-click/releases/tag/v${version}";
changelog = "https://github.com/ewels/rich-click/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};