{ lib , buildPythonPackage , fetchFromGitHub , pythonOlder , CommonMark , colorama , dataclasses , poetry-core , pygments , typing-extensions , pytestCheckHook }: buildPythonPackage rec { pname = "rich"; version = "11.2.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "Textualize"; repo = pname; rev = "v${version}"; sha256 = "19k8c8jnqj1v0ji8kkx3r2ny6wlpwy58ir7lyrh2qyjvzkw08i58"; }; 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/Textualize/rich"; license = licenses.mit; maintainers = with maintainers; [ ris ]; }; }