python312Packages.rich-click: 1.8.3 -> 1.8.4 (#355714)

This commit is contained in:
OTABI Tomoya 2024-11-24 00:58:34 +09:00 committed by GitHub
commit 697143459c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -18,6 +18,8 @@ python3.pkgs.buildPythonApplication rec {
build-system = with python3.pkgs; [ setuptools ]; build-system = with python3.pkgs; [ setuptools ];
pythonRelaxDeps = [ "rich-click" ];
dependencies = with python3.pkgs; [ dependencies = with python3.pkgs; [
robotframework robotframework
click click

View File

@ -11,7 +11,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "rich-click"; pname = "rich-click";
version = "1.8.3"; version = "1.8.4";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "ewels"; owner = "ewels";
repo = "rich-click"; repo = "rich-click";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-7Avg8HcN9q0EUOnkvuM0oIbwTUGAY2ksbX3SOVZtPOc="; hash = "sha256-qDcZVbwpyqFakJDo8Y67is8oJgC3o/i9xYq6JPTKRRI=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];