Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 600 B view raw
1{ lib 2, fetchPypi 3, click 4, pyyaml 5, buildPythonPackage 6, isPy3k 7}: 8 9buildPythonPackage rec{ 10 version = "2.0.5"; 11 pname = "panflute"; 12 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "1ssmqcyr91f0gpl49lz6a9jkl17l06h6qcik24rlmva28ii6aszz"; 18 }; 19 20 propagatedBuildInputs = [ click pyyaml ]; 21 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 }; 28}