blob: 8c8679f3a17a91a727e8cfb0b09022717bb44b5a (
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
32
33
34
35
36
37
|
{
buildPythonPackage,
fetchPypi,
setuptools,
sphinx,
pyyaml,
rst2pdf,
lib,
}:
buildPythonPackage rec {
pname = "sphinxcontrib-mermaid";
version = "1.2.3";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "sphinxcontrib_mermaid";
hash = "sha256-NYaZ0OySTvZ5tBhz2e3ZfQdzRG2vl2DHXhjcCt/ZE3E=";
};
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 = [ ];
};
}
|