Commit 6aedeec9 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent c4f8e600
Loading
Loading
Loading
Loading
+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; [ ];
  };