about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/spark-parser/default.nix
blob: 2dabd3cc10038e0fb73e9a0bafbae7e25e1433bb (plain) (blame)
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
{ 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";
    homepage = "https://github.com/rocky/python-spark";
    license = licenses.mit;
    maintainers = with maintainers; [raskin];
  };

}