mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
spark_parser: init at 1.4.0
This commit is contained in:
parent
c81c652940
commit
aad0b7108c
@ -23446,6 +23446,24 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
spark_parser = buildPythonPackage (rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "spark_parser";
|
||||
version = "1.4.0";
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/s/${pname}/${name}.tar.gz";
|
||||
sha256 = "1r7d07kw4asgajvhq1gzln4g1qi2r13jw0s8c7d5z3g4kp8y0br8";
|
||||
};
|
||||
buildInputs = with self; [nose];
|
||||
propagatedBuildInputs = [];
|
||||
meta = {
|
||||
description = ''An Early-Algorithm Context-free grammar Parser'';
|
||||
homepage = "https://github.com/rocky/python-spark";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [raskin];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
});
|
||||
|
||||
sphinx = buildPythonPackage (rec {
|
||||
name = "${pname}-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user