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