anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / rich-rst / default.nix
blob277ba67562e8c7d67a8a138eb3703bed3bd00756
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   docutils,
7   rich,
8   pytestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "rich-rst";
13   version = "1.3.1";
14   pyproject = true;
16   src = fetchFromGitHub {
17     owner = "wasi-master";
18     repo = "rich-rst";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-jbzGTEth5Qoc0ORFCS3sZMrGUpoQQOVsd+l3/zMWy20=";
21   };
23   build-system = [ setuptools ];
25   dependencies = [
26     docutils
27     rich
28   ];
30   nativeCheckInputs = [ pytestCheckHook ];
32   pythonImportsCheck = [ "rich_rst" ];
34   meta = with lib; {
35     description = "Beautiful reStructuredText renderer for rich";
36     homepage = "https://github.com/wasi-master/rich-rst";
37     license = licenses.mit;
38     maintainers = [ ];
39   };