1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5, plantuml
6}:
7
8buildPythonPackage rec {
9 pname = "sphinxcontrib-plantuml";
10 version = "0.20";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "041d8f79599522949eda129146a60955d0b7544963790411106fff6f9f3daab4";
15 };
16
17 # No tests included.
18 doCheck = false;
19
20 propagatedBuildInputs = [ sphinx plantuml ];
21
22 meta = with lib; {
23 description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
24 homepage = "https://github.com/sphinx-contrib/plantuml/";
25 license = with licenses; [ bsd2 ];
26 };
27
28}