python313Packages.rich-toolkit: 0.14.9 -> 0.15.1

Diff: https://github.com/patrick91/rich-toolkit/compare/0.14.9...0.15.1

Changelog: https://github.com/patrick91/rich-toolkit/releases/tag/0.15.1
This commit is contained in:
Fabian Affolter
2025-09-27 20:14:38 +02:00
parent c4f8e600fa
commit 6aedeec9ec
@@ -18,19 +18,17 @@
buildPythonPackage rec {
pname = "rich-toolkit";
version = "0.14.9";
version = "0.15.1";
pyproject = true;
src = fetchFromGitHub {
owner = "patrick91";
repo = "rich-toolkit";
tag = "v${version}";
hash = "sha256-bX6HqUwFkXXc2Z1LF6BSVBEOl2UUJE9pCBKsfOxUoc0=";
tag = version;
hash = "sha256-NcdABfbqE+VzE6bptBO98Cf7jetlfVqa/LB5Chg/P8Y=";
};
build-system = [
hatchling
];
build-system = [ hatchling ];
dependencies = [
click
@@ -43,14 +41,12 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"rich_toolkit"
];
pythonImportsCheck = [ "rich_toolkit" ];
meta = {
changelog = "https://github.com/patrick91/rich-toolkit/releases/tag/${src.tag}";
description = "Rich toolkit for building command-line applications";
homepage = "https://pypi.org/project/rich-toolkit";
homepage = "https://github.com/patrick91/rich-toolkit/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};