fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
30 lines
642 B
Nix
30 lines
642 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
nose,
|
|
click,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spark-parser";
|
|
version = "1.8.9";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "spark_parser";
|
|
inherit version;
|
|
sha256 = "0np2y4jcir4a4j18wws7yzkz2zj6nqhdhn41rpq8pyskg6wrgfx7";
|
|
};
|
|
|
|
buildInputs = [ nose ];
|
|
propagatedBuildInputs = [ click ];
|
|
|
|
meta = with lib; {
|
|
description = "An Early-Algorithm Context-free grammar Parser";
|
|
mainProgram = "spark-parser-coverage";
|
|
homepage = "https://github.com/rocky/python-spark";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ raskin ];
|
|
};
|
|
}
|