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

buildPythonPackage rec {
  version = "1.5.0";
  format = "setuptools";
  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;
  };

}