Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 596 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, sphinx 5, plantuml 6}: 7 8buildPythonPackage rec { 9 pname = "sphinxcontrib-plantuml"; 10 version = "0.17"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1e388ea0c8bc933adecf438f5243857ca238050a107d2768e5ffb490bbb733d7"; 15 }; 16 17 # No tests included. 18 doCheck = false; 19 20 propagatedBuildInputs = [ sphinx plantuml ]; 21 22 meta = with stdenv.lib; { 23 description = "Provides a Sphinx domain for embedding UML diagram with PlantUML"; 24 homepage = "https://github.com/sphinx-contrib/plantuml/"; 25 license = with licenses; [ bsd2 ]; 26 }; 27 28}