biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / spark-parser / default.nix
blob46eea5136304e20268f9f5412500b40e54e208ab
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   unittestCheckHook,
6   click,
7 }:
9 buildPythonPackage rec {
10   pname = "spark-parser";
11   version = "1.9.0";
12   format = "setuptools";
14   src = fetchPypi {
15     pname = "spark_parser";
16     inherit version;
17     sha256 = "sha256-3GbUjEJlxBM9tBqcX+nBxQKzsgFn3xWKDyNM0xcSz2Q=";
18   };
20   propagatedBuildInputs = [ click ];
22   nativeCheckInputs = [ unittestCheckHook ];
23   unittestFlagsArray = [
24     "-s"
25     "test"
26     "-v"
27   ];
29   meta = with lib; {
30     description = "Early-Algorithm Context-free grammar Parser";
31     mainProgram = "spark-parser-coverage";
32     homepage = "https://github.com/rocky/python-spark";
33     license = licenses.mit;
34     maintainers = with maintainers; [ raskin ];
35   };