lol
1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5, plantuml
6}:
7
8buildPythonPackage rec {
9 pname = "sphinxcontrib-plantuml";
10 version = "0.22";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "a42c7a13ab1ae9ed18e8e8b0f76b8d35dc476fdebe6e634354fe6fd0f261f686";
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 maintainers = with maintainers; [ ];
26 license = with licenses; [ bsd2 ];
27 };
28}