{ lib , buildPythonPackage , fetchFromGitHub , pythonOlder , CommonMark , colorama , dataclasses , poetry-core , pygments , typing-extensions , pytestCheckHook }: buildPythonPackage rec { pname = "rich"; version = "10.14.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "willmcgugan"; repo = pname; rev = "v${version}"; sha256 = "1j1m1064gmy07ah4crds5sd0k7dcwvf2b1z6rvjfvq4v9fx962qv"; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ CommonMark colorama pygments typing-extensions ] ++ lib.optional (pythonOlder "3.7") [ dataclasses ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "rich" ]; meta = with lib; { description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"; homepage = "https://github.com/willmcgugan/rich"; license = licenses.mit; maintainers = with maintainers; [ ris ]; }; }