snac2: 2.68 -> 2.70 (#379043)
[NixPkgs.git] / pkgs / development / python-modules / sphinx-comments / default.nix
blob65dedffdfacbb865e867ccb9ee95c17dcca4e3dd
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   sphinx,
7 }:
9 buildPythonPackage rec {
10   pname = "sphinx-comments";
11   version = "0.0.3";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "00170afff27019fad08e421da1ae49c681831fb2759786f07c826e89ac94cf21";
17   };
19   nativeBuildInputs = [ setuptools ];
21   propagatedBuildInputs = [ sphinx ];
23   pythonImportsCheck = [ "sphinx_comments" ];
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   };