2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-27 23:30:54 +02:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
, plantuml
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-plantuml";
|
2021-06-18 23:47:38 +02:00
|
|
|
version = "0.21";
|
2018-10-27 23:30:54 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 23:47:38 +02:00
|
|
|
sha256 = "53e1808dc2b1f3ec20c177fa3fa6d438d75ef572a25a489e330bb01130508d87";
|
2018-10-27 23:30:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests included.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ sphinx plantuml ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-27 23:30:54 +02:00
|
|
|
description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
|
2019-06-18 03:51:16 +02:00
|
|
|
homepage = "https://github.com/sphinx-contrib/plantuml/";
|
2018-10-27 23:30:54 +02:00
|
|
|
license = with licenses; [ bsd2 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|