nixpkgs/pkgs/development/python-modules/sphinx-comments/default.nix
2023-09-27 15:34:45 +02:00

28 lines
616 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, sphinx
}:
buildPythonPackage rec {
pname = "sphinx-comments";
version = "0.0.3";
format = "pyproject";
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 ];
};
}