blob: 217c084115b179a7d895025fb528abb9c4c1e9f0 (
plain)
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
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-comments";
version = "0.0.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "00170afff27019fad08e421da1ae49c681831fb2759786f07c826e89ac94cf21";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "sphinx_comments" ];
meta = {
description = "Add comments and annotation to your documentation";
homepage = "https://github.com/executablebooks/sphinx-comments";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|