aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/pandoc-plantuml-filter/default.nix
blob: 61a0f14d5971b3e2b037f23ff7ca4cc5392e1ef1 (plain)
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 ];
  };
}