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

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

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

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

}