summary refs log tree commit diff
path: root/pkgs/development/python-modules/pandocfilters/default.nix
blob: 8ca57440b3f77918ee1e555d88e5a0e85aa226e4 (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
{ lib
, buildPythonPackage
, fetchPypi
}:

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

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

  # No tests available
  doCheck = false;

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

}