3
0
Fork 0
forked from mirrors/nixpkgs
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.

50 lines
1,020 B
Nix
Raw Normal View History

{ lib
2020-10-10 19:13:12 +01:00
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, CommonMark
, dataclasses
2021-05-05 20:24:30 +01:00
, poetry-core
2020-10-10 19:13:12 +01:00
, pygments
, typing-extensions
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "rich";
2022-04-10 13:58:04 +01:00
version = "12.2.0";
2021-05-05 20:24:30 +01:00
format = "pyproject";
disabled = pythonOlder "3.6";
2020-10-10 19:13:12 +01:00
src = fetchFromGitHub {
owner = "Textualize";
2020-10-10 19:13:12 +01:00
repo = pname;
rev = "v${version}";
2022-04-10 13:58:04 +01:00
sha256 = "02zypmnc9sijlipki0riywh82piamd3hlrl5xbg2bxlldnlnwx1d";
2020-10-10 19:13:12 +01:00
};
2021-05-05 20:24:30 +01:00
nativeBuildInputs = [ poetry-core ];
2020-10-10 19:13:12 +01:00
propagatedBuildInputs = [
CommonMark
pygments
2021-05-05 20:24:30 +01:00
] ++ lib.optional (pythonOlder "3.7") [
dataclasses
] ++ lib.optional (pythonOlder "3.9") [
typing-extensions
2021-05-05 20:24:30 +01:00
];
checkInputs = [
pytestCheckHook
];
2020-10-10 19:13:12 +01:00
pythonImportsCheck = [ "rich" ];
meta = with lib; {
2020-10-10 19:13:12 +01: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 19:13:12 +01:00
license = licenses.mit;
maintainers = with maintainers; [ ris ];
};
}