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