python311Packages.sphinxcontrib-plantuml: 0.29 -> 0.30

This commit is contained in:
R. Ryantm 2024-05-24 04:12:01 +00:00 committed by natsukium
parent fc165a03b2
commit af71e175a2
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
sphinx,
plantuml,
pythonOlder,
@ -9,20 +10,21 @@
buildPythonPackage rec {
pname = "sphinxcontrib-plantuml";
version = "0.29";
format = "setuptools";
version = "0.30";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-l6Tyomr5HbiHcMz4o7LgMwW82n7EGn+Wn8jLJ7hKPEQ=";
hash = "sha256-KhJmykO930RkCuRBBwA99EkN4rPDFUoNYnz7Y+mhab8=";
};
propagatedBuildInputs = [
sphinx
plantuml
];
build-system = [ setuptools ];
dependencies = [ sphinx ];
propagatedBuildInputs = [ plantuml ];
# No tests included.
doCheck = false;