3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #181503 from risicle/ris-rich-passthru-tests

This commit is contained in:
Sandro 2022-08-14 02:07:02 +02:00 committed by GitHub
commit d6fc042624
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,12 @@
, pygments
, typing-extensions
, pytestCheckHook
# for passthru.tests
, enrich
, httpie
, rich-rst
, textual
}:
buildPythonPackage rec {
@ -46,6 +52,10 @@ buildPythonPackage rec {
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";