Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pandocfilters / default.nix
blob8ca57440b3f77918ee1e555d88e5a0e85aa226e4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   version = "1.4.3";
8   pname = "pandocfilters";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "bc63fbb50534b4b1f8ebe1860889289e8af94a23bff7445259592df25a3906eb";
13   };
15   # No tests available
16   doCheck = false;
18   meta = with lib; {
19     description = "A python module for writing pandoc filters, with a collection of examples";
20     homepage = "https://github.com/jgm/pandocfilters";
21     license = licenses.mit;
22   };