nixpkgs/pkgs/development/python-modules/rich/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-10-10 18:13:12 +00:00
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, CommonMark
, dataclasses
2021-05-05 19:24:30 +00:00
, poetry-core
2020-10-10 18:13:12 +00:00
, pygments
, typing-extensions
, pytestCheckHook
# for passthru.tests
, enrich
, httpie
, rich-rst
, textual
2020-10-10 18:13:12 +00:00
}:
buildPythonPackage rec {
pname = "rich";
version = "12.5.1";
2021-05-05 19:24:30 +00:00
format = "pyproject";
disabled = pythonOlder "3.6";
2020-10-10 18:13:12 +00:00
src = fetchFromGitHub {
owner = "Textualize";
2020-10-10 18:13:12 +00:00
repo = pname;
rev = "v${version}";
sha256 = "sha256-FjzvFx+A4DS2XeKBZ2DGRqudvH22AUSQJnIxKs2O0AU=";
2020-10-10 18:13:12 +00:00
};
2021-05-05 19:24:30 +00:00
nativeBuildInputs = [ poetry-core ];
2020-10-10 18:13:12 +00:00
propagatedBuildInputs = [
CommonMark
pygments
2021-05-05 19:24:30 +00:00
] ++ lib.optional (pythonOlder "3.7") [
dataclasses
] ++ lib.optional (pythonOlder "3.9") [
typing-extensions
2021-05-05 19:24:30 +00:00
];
checkInputs = [
pytestCheckHook
];
2020-10-10 18:13:12 +00:00
disabledTests = lib.optionals stdenv.isDarwin [
# darwin console duplicates 3 of 4 lines
"test_rich_console_ex"
];
2020-10-10 18:13:12 +00:00
pythonImportsCheck = [ "rich" ];
passthru.tests = {
inherit enrich httpie rich-rst textual;
};
meta = with lib; {
2020-10-10 18:13:12 +00:00
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal";
homepage = "https://github.com/Textualize/rich";
2020-10-10 18:13:12 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ris jyooru ];
2020-10-10 18:13:12 +00:00
};
}