ps3-disc-dumper: 3.2.3 -> 4.2.5, .NET 6 -> 9 (#361506)
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-plantuml / default.nix
blobe21f983ee759ad99ce72cd0ebe81cab5fa757ccd
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   sphinx,
7   plantuml,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "sphinxcontrib-plantuml";
13   version = "0.30";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-KhJmykO930RkCuRBBwA99EkN4rPDFUoNYnz7Y+mhab8=";
21   };
23   build-system = [ setuptools ];
25   dependencies = [ sphinx ];
27   propagatedBuildInputs = [ plantuml ];
29   pythonImportsCheck = [ "sphinxcontrib.plantuml" ];
31   # No tests included.
32   doCheck = false;
34   pythonNamespaces = [ "sphinxcontrib" ];
36   meta = with lib; {
37     description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
38     homepage = "https://github.com/sphinx-contrib/plantuml/";
39     license = with licenses; [ bsd2 ];
40     maintainers = [ ];
41   };