Unverified Commit 1c85f79b authored by provokateurin's avatar provokateurin
Browse files

python3Packages.sphinxcontrib-mermaid: init at 1.0.0

parent c9dde7e8
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchPypi,
  setuptools,
  sphinx,
  pyyaml,
  rst2pdf,
  lib,
}:
buildPythonPackage rec {
  pname = "sphinxcontrib-mermaid";
  version = "1.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit version;
    pname = "sphinxcontrib_mermaid";
    hash = "sha256-Loq2fT4eKBZmP5NH0Cao3uSoWKzdStMt0cgIiT24gUY=";
  };

  build-system = [ setuptools ];

  dependencies = [
    sphinx
    pyyaml
    rst2pdf
  ];

  pythonImportsCheck = [ "sphinxcontrib.mermaid" ];

  meta = {
    description = "Mermaid diagrams in yours sphinx powered docs";
    homepage = "https://github.com/mgaitan/sphinxcontrib-mermaid";
    license = lib.licenses.bsd2;
    maintainers = [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -17627,6 +17627,8 @@ self: super: with self; {
  sphinxcontrib-log-cabinet = callPackage ../development/python-modules/sphinxcontrib-log-cabinet { };
  sphinxcontrib-mermaid = callPackage ../development/python-modules/sphinxcontrib-mermaid { };
  sphinxcontrib-moderncmakedomain =
    callPackage ../development/python-modules/sphinxcontrib-moderncmakedomain
      { };