Unverified Commit 10ab3b09 authored by Yt's avatar Yt Committed by GitHub
Browse files

python313Packages.rich-toolkit: 0.14.9 -> 0.15.1, python313Packages.bentoml:...

python313Packages.rich-toolkit: 0.14.9 -> 0.15.1, python313Packages.bentoml: 1.4.23 -> 1.4.25 (#446720)
parents 5a76d045 09184fe0
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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
+6 −10
Original line number Diff line number Diff line
@@ -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; [ ];
  };