linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib_plantuml / default.nix
blobe028b6eea80edf271296fd4a4fb3f0066ab51f33
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sphinx
5 , plantuml
6 }:
8 buildPythonPackage rec {
9   pname = "sphinxcontrib-plantuml";
10   version = "0.19";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "98b9f02282907b0c5b7a93a446c4649909aaf5785d2da0dd263c8ad68e00e288";
15   };
17   # No tests included.
18   doCheck = false;
20   propagatedBuildInputs = [ sphinx plantuml ];
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   };