Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 27 lines 568 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, click 6}: 7 8buildPythonPackage rec { 9 pname = "spark_parser"; 10 version = "1.8.7"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "4c5e6064afbb3c114749016d585b0e4f9222d4ffa97a1854c9ab70b25783ef48"; 15 }; 16 17 buildInputs = [ nose ]; 18 propagatedBuildInputs = [ click ]; 19 20 meta = with stdenv.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}