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