29 lines
586 B
Nix
29 lines
586 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, sphinx
|
|
, plantuml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-plantuml";
|
|
version = "0.20";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "041d8f79599522949eda129146a60955d0b7544963790411106fff6f9f3daab4";
|
|
};
|
|
|
|
# No tests included.
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ sphinx plantuml ];
|
|
|
|
meta = with lib; {
|
|
description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
|
|
homepage = "https://github.com/sphinx-contrib/plantuml/";
|
|
license = with licenses; [ bsd2 ];
|
|
};
|
|
|
|
}
|