python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / pandoc-plantuml-filter / default.nix
blobcdf0ab862df49e1f4f2c6cb521737d1f4d836bef
1 { buildPythonApplication
2 , fetchPypi
3 , pandocfilters
4 , lib
5 }:
7 buildPythonApplication rec {
8   pname = "pandoc-plantuml-filter";
9   version = "0.1.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "08673mfwxsw6s52mgglbdz7ybb68svqyr3s9w97d7rifbwvvc9ia";
14   };
16   propagatedBuildInputs = [
17     pandocfilters
18   ];
20   meta = with lib; {
21     homepage = "https://github.com/timofurrer/pandoc-plantuml-filter";
22     description = "Pandoc filter which converts PlantUML code blocks to PlantUML images";
23     license = licenses.mit;
24     maintainers = with maintainers; [ cmcdragonkai ];
25   };