1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5}:
6
7buildPythonPackage rec {
8 pname = "sphinx-comments";
9 version = "0.0.3";
10 format = "pyproject";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "00170afff27019fad08e421da1ae49c681831fb2759786f07c826e89ac94cf21";
15 };
16
17 propagatedBuildInputs = [ sphinx ];
18
19 pythonImportsCheck = [ "sphinx_comments" ];
20
21 meta = with lib; {
22 description = "Add comments and annotation to your documentation";
23 homepage = "https://github.com/executablebooks/sphinx-comments";
24 license = licenses.mit;
25 maintainers = with maintainers; [ marsam ];
26 };
27}