depot/third_party/nixpkgs/pkgs/development/python-modules/rich-rst/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

40 lines
774 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
docutils,
rich,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "rich-rst";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "wasi-master";
repo = "rich-rst";
rev = "refs/tags/v${version}";
hash = "sha256-jbzGTEth5Qoc0ORFCS3sZMrGUpoQQOVsd+l3/zMWy20=";
};
build-system = [ setuptools ];
dependencies = [
docutils
rich
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "rich_rst" ];
meta = with lib; {
description = "Beautiful reStructuredText renderer for rich";
homepage = "https://github.com/wasi-master/rich-rst";
license = licenses.mit;
maintainers = with maintainers; [ joelkoen ];
};
}