about summary refs log tree commit diff
path: root/pkgs/tools/misc/pandoc-plantuml-filter/default.nix
blob: cdf0ab862df49e1f4f2c6cb521737d1f4d836bef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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 ];
  };
}