depot/third_party/nixpkgs/pkgs/development/python-modules/spark-parser/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

29 lines
591 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";
homepage = "https://github.com/rocky/python-spark";
license = licenses.mit;
maintainers = with maintainers; [raskin];
};
}