about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/panflute/default.nix
blob: 4e161d4bfa3c7832e194f97398d231930c3fc642 (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
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, fetchPypi
, click
, pyyaml
, buildPythonPackage
, isPy3k
, fetchpatch
}:

buildPythonPackage rec{
  version = "2.1.0";
  pname = "panflute";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "8a3d5dd2a10c3aa6fa8167713fedb47400f0e8ae6ea8346fd4b599842bb1882d";
  };
  patches = [
    # Upstream has relaxed the version constaints for the click dependency
    # but there hasn't been a release since then
    (fetchpatch {
      url = "https://github.com/sergiocorreia/panflute/commit/dee6c716a73072a968d67f8638a61de44025d8de.patch";
      sha256 = "sha256-Kj/NTcXsSkevpfr8OwoIQi0p6ChXDM6YgYDPNHJtJZo=";
    })
  ];

  propagatedBuildInputs = [ click pyyaml ];

  meta = with lib; {
    description = "A Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions";
    homepage = "http://scorreia.com/software/panflute";
    license = licenses.bsd3;
    maintainers = with maintainers; [ synthetica ];
  };
}