Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / spark-parser / default.nix
blob690d9a295de446b307c220af617bbf0c1ea19c9f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , click
6 }:
8 buildPythonPackage rec {
9   pname = "spark-parser";
10   version = "1.8.9";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "spark_parser";
15     inherit version;
16     sha256 = "0np2y4jcir4a4j18wws7yzkz2zj6nqhdhn41rpq8pyskg6wrgfx7";
17   };
19   buildInputs = [ nose ];
20   propagatedBuildInputs = [ click ];
22   meta = with lib; {
23     description = "An Early-Algorithm Context-free grammar Parser";
24     mainProgram = "spark-parser-coverage";
25     homepage = "https://github.com/rocky/python-spark";
26     license = licenses.mit;
27     maintainers = with maintainers; [raskin];
28   };