summary refs log tree commit diff
path: root/pkgs/development/python-modules/pandocfilters/default.nix
blob: 9dac79bea7439bc9f68692498d8b91e6d45f1a70 (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.5.0";
  pname = "pandocfilters";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0b679503337d233b4339a817bfc8c50064e2eff681314376a47cb582305a7a38";
  };

  # 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;
  };

}