python313Packages.rich-toolkit: 0.14.9 -> 0.15.1, python313Packages.bentoml: 1.4.23 -> 1.4.25 (#446720)

This commit is contained in:
Yt
2025-09-27 22:34:22 +00:00
committed by GitHub
2 changed files with 11 additions and 12 deletions
@@ -57,6 +57,7 @@
pyyaml,
questionary,
rich,
rich-toolkit,
schema,
simple-di,
starlette,
@@ -79,7 +80,7 @@
}:
let
version = "1.4.23";
version = "1.4.25";
aws = [ fs-s3fs ];
grpc = [
grpcio
@@ -129,7 +130,7 @@ let
owner = "bentoml";
repo = "BentoML";
tag = "v${version}";
hash = "sha256-p9d8TyN09jJ2VotaAvbC9jxJ5kNC2S7VhkatzrDJ1TY=";
hash = "sha256-07LR0Q2inKRKn6NHHldv8kSFtCBcZvGd+VfEEhxc2Ac=";
};
in
buildPythonPackage {
@@ -148,6 +149,7 @@ buildPythonPackage {
"opentelemetry-sdk"
"opentelemetry-semantic-conventions"
"opentelemetry-util-http"
"rich-toolkit"
];
build-system = [
@@ -195,6 +197,7 @@ buildPythonPackage {
pyyaml
questionary
rich
rich-toolkit
schema
simple-di
starlette
@@ -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; [ ];
};