2018-10-27 22:30:54 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
, plantuml
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-plantuml";
|
2019-05-12 23:53:33 +01:00
|
|
|
version = "0.15";
|
2018-10-27 22:30:54 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-12 23:53:33 +01:00
|
|
|
sha256 = "06yl6aiw8gpq3wmi6wxy5lahfgbbmlw6nchq9h1ssi5lipwaxn7a";
|
2018-10-27 22:30:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests included.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ sphinx plantuml ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
|
|
|
|
homepage = https://bitbucket.org/birkenfeld/sphinx-contrib;
|
|
|
|
license = with licenses; [ bsd2 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|