python310Packages.sphinx-comments: init at 0.0.3

This commit is contained in:
Mario Rodas 2022-07-01 04:20:00 +00:00
parent 543652ab74
commit 018764c3b3
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, sphinx
}:
buildPythonPackage rec {
pname = "sphinx-comments";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "00170afff27019fad08e421da1ae49c681831fb2759786f07c826e89ac94cf21";
};
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "sphinx_comments" ];
meta = with lib; {
description = "Add comments and annotation to your documentation";
homepage = "https://github.com/executablebooks/sphinx-comments";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}

View file

@ -9982,6 +9982,8 @@ in {
sphinx-better-theme = callPackage ../development/python-modules/sphinx-better-theme { };
sphinx-comments = callPackage ../development/python-modules/sphinx-comments { };
sphinx-pytest = callPackage ../development/python-modules/sphinx-pytest { };
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };