about summary refs log tree commit diff
path: root/pkgs/development/python-modules/py_stringmatching
diff options
context:
space:
mode:
authorMatan Shenhav <matan@fluxcraft.net>2018-02-24 14:44:38 +0000
committerMatan Shenhav <matan@fluxcraft.net>2018-02-25 17:49:30 +0000
commit0eb46505c3b9814e59d5985cf45239d27aca2080 (patch)
tree8dddcb840121b234e31dabdf9abebb31c6ff1eb2 /pkgs/development/python-modules/py_stringmatching
parentcda0f9fedef64f08fdd97ca81d48a5aaea047006 (diff)
downloadnixlib-0eb46505c3b9814e59d5985cf45239d27aca2080.tar
nixlib-0eb46505c3b9814e59d5985cf45239d27aca2080.tar.gz
nixlib-0eb46505c3b9814e59d5985cf45239d27aca2080.tar.bz2
nixlib-0eb46505c3b9814e59d5985cf45239d27aca2080.tar.lz
nixlib-0eb46505c3b9814e59d5985cf45239d27aca2080.tar.xz
nixlib-0eb46505c3b9814e59d5985cf45239d27aca2080.tar.zst
nixlib-0eb46505c3b9814e59d5985cf45239d27aca2080.zip
pythonPackages.py_stringmatching: init at 0.4.0
Diffstat (limited to 'pkgs/development/python-modules/py_stringmatching')
-rw-r--r--pkgs/development/python-modules/py_stringmatching/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/py_stringmatching/default.nix b/pkgs/development/python-modules/py_stringmatching/default.nix
new file mode 100644
index 000000000000..3931078c12ed
--- /dev/null
+++ b/pkgs/development/python-modules/py_stringmatching/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildPythonPackage
+, numpy
+, six
+, nose
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "py_stringmatching";
+  version = "0.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0rjsx7iipn6svki21lmsza7b0dz9vkgmix696zryiv7gkhblqyb4";
+  };
+
+  checkInputs = [ nose ];
+   
+  propagatedBuildInputs = [ numpy six ];
+
+  meta = with lib; {
+    description = "A Python string matching library including string tokenizers and string similarity measures";
+    homepage =  https://sites.google.com/site/anhaidgroup/projects/magellan/py_stringmatching;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ ixxie ];
+  };
+}