2018-10-27 22:30:54 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
, plantuml
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-plantuml";
|
2019-09-28 20:24:09 +01:00
|
|
|
version = "0.17.1";
|
2018-10-27 22:30:54 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-09-28 20:24:09 +01:00
|
|
|
sha256 = "1amvczdin078ia1ax2379lklxr0bwjsrin96174dvssxpzjl04cc";
|
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";
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|