Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / panflute / default.nix
blobda08b858b1b9e447278836f785aee1db3965af1b
1 { lib
2 , fetchPypi
3 , click
4 , pyyaml
5 , buildPythonPackage
6 , isPy3k
7 }:
9 buildPythonPackage rec{
10   version = "2.0.5";
11   pname = "panflute";
13   disabled = !isPy3k;
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "1ssmqcyr91f0gpl49lz6a9jkl17l06h6qcik24rlmva28ii6aszz";
18   };
20   propagatedBuildInputs = [ click pyyaml ];
22   meta = with lib; {
23     description = "A Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions";
24     homepage = "http://scorreia.com/software/panflute";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ synthetica ];
27   };