mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
584 B
Nix
29 lines
584 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, sphinx
|
|
, plantuml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-plantuml";
|
|
version = "0.18";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "08555dndvp12g261wag3qklybdbfnjcmagh4gpl79k2kz5bqrk5c";
|
|
};
|
|
|
|
# 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://github.com/sphinx-contrib/plantuml/";
|
|
license = with licenses; [ bsd2 ];
|
|
};
|
|
|
|
}
|