blob: 86b142cdcb97e0f06d5947447a0798fd1224c599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
unittestCheckHook,
click,
}:
buildPythonPackage rec {
pname = "spark-parser";
version = "1.9.0";
format = "setuptools";
src = fetchPypi {
pname = "spark_parser";
inherit version;
sha256 = "sha256-3GbUjEJlxBM9tBqcX+nBxQKzsgFn3xWKDyNM0xcSz2Q=";
};
propagatedBuildInputs = [ click ];
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s"
"test"
"-v"
];
meta = {
description = "Early-Algorithm Context-free grammar Parser";
mainProgram = "spark-parser-coverage";
homepage = "https://github.com/rocky/python-spark";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ raskin ];
};
}
|