Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-plantuml / default.nix
blob6e0b7802d03a8eab1ad36082747d860e4bad90f4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sphinx
5 , plantuml
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "sphinxcontrib-plantuml";
11   version = "0.29";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-l6Tyomr5HbiHcMz4o7LgMwW82n7EGn+Wn8jLJ7hKPEQ=";
19   };
21   propagatedBuildInputs = [
22     sphinx
23     plantuml
24   ];
26   # No tests included.
27   doCheck = false;
29   pythonNamespaces = [ "sphinxcontrib" ];
31   meta = with lib; {
32     description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
33     homepage = "https://github.com/sphinx-contrib/plantuml/";
34     license = with licenses; [ bsd2 ];
35     maintainers = with maintainers; [ ];
36   };