My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/pandoc-plantuml-filter/default.nix

26 lines
595 B

{ buildPythonApplication
, fetchPypi
, pandocfilters
, lib
}:
buildPythonApplication rec {
pname = "pandoc-plantuml-filter";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "08673mfwxsw6s52mgglbdz7ybb68svqyr3s9w97d7rifbwvvc9ia";
};
propagatedBuildInputs = [
pandocfilters
];
meta = with lib; {
homepage = "https://github.com/timofurrer/pandoc-plantuml-filter";
description = "Pandoc filter which converts PlantUML code blocks to PlantUML images";
license = licenses.mit;
maintainers = with maintainers; [ cmcdragonkai ];
};
}