summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinx-comments/default.nix
blob: 2ffed0c091fb3b1d89455c7a32062de762e94e2b (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
{ lib
, buildPythonPackage
, fetchPypi
, sphinx
}:

buildPythonPackage rec {
  pname = "sphinx-comments";
  version = "0.0.3";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    sha256 = "00170afff27019fad08e421da1ae49c681831fb2759786f07c826e89ac94cf21";
  };

  propagatedBuildInputs = [ sphinx ];

  pythonImportsCheck = [ "sphinx_comments" ];

  meta = with lib; {
    description = "Add comments and annotation to your documentation";
    homepage = "https://github.com/executablebooks/sphinx-comments";
    license = licenses.mit;
    maintainers = with maintainers; [ marsam ];
  };
}