about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rich-rst/default.nix
blob: 5db47dfc65ea15e79830858ed245085066718e44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, docutils
, rich
}:

buildPythonPackage rec {
  pname = "rich-rst";
  version = "1.2.0";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "wasi-master";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-jFPboZ5/T2I6EuyVM+45lrLWen8Kqf94gWXS1WDf1qU=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [ docutils rich ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "rich_rst" ];

  meta = with lib; {
    description = "A beautiful reStructuredText renderer for rich";
    homepage = "https://github.com/wasi-master/rich-rst";
    license = licenses.mit;
    maintainers = with maintainers; [ joelkoen ];
  };
}