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