about summary refs log tree commit diff
path: root/pkgs/development/python-modules/spark_parser
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-25 14:03:50 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-26 16:37:52 +0200
commit4182bba9fedee636e39dcc5d33f6978d396d1f2c (patch)
tree52574c8030a08c66bd6bf62aa3a4c2e1453ca893 /pkgs/development/python-modules/spark_parser
parent5aed95f8b4ecd1f6ec74eec2569dea2e309c87e7 (diff)
pythonPackages.spark_parser: 1.4.0 -> 1.8.7
Diffstat (limited to 'pkgs/development/python-modules/spark_parser')
-rw-r--r--pkgs/development/python-modules/spark_parser/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/spark_parser/default.nix b/pkgs/development/python-modules/spark_parser/default.nix
new file mode 100644
index 0000000000000..badc99f5e3778
--- /dev/null
+++ b/pkgs/development/python-modules/spark_parser/default.nix
@@ -0,0 +1,27 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, nose
+, click
+}:
+
+buildPythonPackage rec {
+  pname = "spark_parser";
+  version = "1.8.7";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "4c5e6064afbb3c114749016d585b0e4f9222d4ffa97a1854c9ab70b25783ef48";
+  };
+
+  buildInputs = [ nose ];
+  propagatedBuildInputs = [ click ];
+
+  meta = with stdenv.lib; {
+    description = ''An Early-Algorithm Context-free grammar Parser'';
+    homepage = "https://github.com/rocky/python-spark";
+    license = licenses.mit;
+    maintainers = with maintainers; [raskin];
+  };
+
+}