Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 640 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4}: 5 6buildPythonPackage rec { 7 pname = "Parsley"; 8 version = "1.3"; 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0hcd41bl07a8sx7nmx12p16xprnblc4phxkawwmmy78n8y6jfi4l"; 12 }; 13 # Tests fail although the package works just fine. Unfortunately 14 # the tests as run by the upstream CI server travis.org are broken. 15 doCheck = false; 16 meta = with lib; { 17 license = licenses.mit; 18 homepage = "https://launchpad.net/parsley"; 19 description = "A parser generator library based on OMeta, and other useful parsing tools."; 20 maintainers = with maintainers; [ seppeljordan ]; 21 }; 22}