aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pandocfilters/default.nix
blob: 848e59313af961354509a449e34c7b05cd9fdb2a (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
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  version = "1.4.3";
  pname = "pandocfilters";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bc63fbb50534b4b1f8ebe1860889289e8af94a23bff7445259592df25a3906eb";
  };

  # No tests available
  doCheck = false;

  meta = with stdenv.lib; {
    description = "A python module for writing pandoc filters, with a collection of examples";
    homepage = "https://github.com/jgm/pandocfilters";
    license = licenses.mit;
  };

}