1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, click 6}: 7 8buildPythonPackage rec { 9 pname = "spark_parser"; 10 version = "1.8.9"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0np2y4jcir4a4j18wws7yzkz2zj6nqhdhn41rpq8pyskg6wrgfx7"; 15 }; 16 17 buildInputs = [ nose ]; 18 propagatedBuildInputs = [ click ]; 19 20 meta = with lib; { 21 description = "An Early-Algorithm Context-free grammar Parser"; 22 homepage = "https://github.com/rocky/python-spark"; 23 license = licenses.mit; 24 maintainers = with maintainers; [raskin]; 25 }; 26 27}