2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2022-08-12 12:06:08 +00:00
|
|
|
, stdenv
|
2020-10-16 20:44:37 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonOlder
|
|
|
|
, CommonMark
|
|
|
|
, dataclasses
|
2021-05-20 23:08:51 +00:00
|
|
|
, poetry-core
|
2020-10-16 20:44:37 +00:00
|
|
|
, pygments
|
|
|
|
, typing-extensions
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rich";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "12.5.1";
|
2021-05-20 23:08:51 +00:00
|
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2022-04-15 01:41:22 +00:00
|
|
|
owner = "Textualize";
|
2020-10-16 20:44:37 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-FjzvFx+A4DS2XeKBZ2DGRqudvH22AUSQJnIxKs2O0AU=";
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
CommonMark
|
|
|
|
pygments
|
2021-05-20 23:08:51 +00:00
|
|
|
] ++ lib.optional (pythonOlder "3.7") [
|
|
|
|
dataclasses
|
2022-04-27 09:35:20 +00:00
|
|
|
] ++ lib.optional (pythonOlder "3.9") [
|
|
|
|
typing-extensions
|
2021-05-20 23:08:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
2020-10-16 20:44:37 +00:00
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
disabledTests = lib.optionals stdenv.isDarwin [
|
|
|
|
# darwin console duplicates 3 of 4 lines
|
|
|
|
"test_rich_console_ex"
|
|
|
|
];
|
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
pythonImportsCheck = [ "rich" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-10-16 20:44:37 +00:00
|
|
|
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal";
|
2022-04-15 01:41:22 +00:00
|
|
|
homepage = "https://github.com/Textualize/rich";
|
2020-10-16 20:44:37 +00:00
|
|
|
license = licenses.mit;
|
2022-08-12 12:06:08 +00:00
|
|
|
maintainers = with maintainers; [ ris jyooru ];
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
|
|
|
}
|