diff --git a/pkgs/development/python-modules/rich/default.nix b/pkgs/development/python-modules/rich/default.nix index 805f3cf6e9a3b..95361563533a5 100644 --- a/pkgs/development/python-modules/rich/default.nix +++ b/pkgs/development/python-modules/rich/default.nix @@ -8,6 +8,12 @@ , pygments , typing-extensions , pytestCheckHook + +# for passthru.tests +, enrich +, httpie +, rich-rst +, textual }: buildPythonPackage rec { @@ -40,6 +46,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";