nixpkgs/pkgs/development/python-modules/rich/default.nix
2023-01-15 14:14:19 +10:00

57 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, CommonMark
, poetry-core
, pygments
, typing-extensions
, pytestCheckHook
# for passthru.tests
, enrich
, httpie
, rich-rst
, textual
}:
buildPythonPackage rec {
pname = "rich";
version = "13.0.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Textualize";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Mc2ZTpn2cPGXIBblwwukJGiD8etdVi8ag9Xb77gG62A=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
CommonMark
pygments
] ++ lib.optionals (pythonOlder "3.9") [
typing-extensions
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "rich" ];
passthru.tests = {
inherit enrich httpie rich-rst textual;
};
meta = with lib; {
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal";
homepage = "https://github.com/Textualize/rich";
license = licenses.mit;
maintainers = with maintainers; [ ris joelkoen ];
};
}