Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / rich-rst / default.nix
blob5db47dfc65ea15e79830858ed245085066718e44
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools
5 , docutils
6 , rich
7 }:
9 buildPythonPackage rec {
10   pname = "rich-rst";
11   version = "1.2.0";
12   format = "pyproject";
14   src = fetchFromGitHub {
15     owner = "wasi-master";
16     repo = pname;
17     rev = "refs/tags/v${version}";
18     hash = "sha256-jFPboZ5/T2I6EuyVM+45lrLWen8Kqf94gWXS1WDf1qU=";
19   };
21   nativeBuildInputs = [
22     setuptools
23   ];
25   propagatedBuildInputs = [ docutils rich ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "rich_rst" ];
32   meta = with lib; {
33     description = "A beautiful reStructuredText renderer for rich";
34     homepage = "https://github.com/wasi-master/rich-rst";
35     license = licenses.mit;
36     maintainers = with maintainers; [ joelkoen ];
37   };