2018-10-27 23:30:54 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
, plantuml
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-plantuml";
|
2019-06-18 03:51:16 +02:00
|
|
|
version = "0.17";
|
2018-10-27 23:30:54 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-06-18 03:51:16 +02:00
|
|
|
sha256 = "1e388ea0c8bc933adecf438f5243857ca238050a107d2768e5ffb490bbb733d7";
|
2018-10-27 23:30:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests included.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ sphinx plantuml ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|