2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-25 19:03:50 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, click
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "spark_parser";
|
2019-08-20 22:05:55 +01:00
|
|
|
version = "1.8.9";
|
2018-10-25 19:03:50 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-20 22:05:55 +01:00
|
|
|
sha256 = "0np2y4jcir4a4j18wws7yzkz2zj6nqhdhn41rpq8pyskg6wrgfx7";
|
2018-10-25 19:03:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
propagatedBuildInputs = [ click ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-16 04:20:42 +00:00
|
|
|
description = "An Early-Algorithm Context-free grammar Parser";
|
2018-10-25 19:03:50 +01:00
|
|
|
homepage = "https://github.com/rocky/python-spark";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [raskin];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|