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