1{ lib
2, buildPythonPackage
3, numpy
4, six
5, nose
6, fetchPypi
7}:
8
9buildPythonPackage rec {
10 pname = "py_stringmatching";
11 version = "0.4.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "0rjsx7iipn6svki21lmsza7b0dz9vkgmix696zryiv7gkhblqyb4";
16 };
17
18 checkInputs = [ nose ];
19
20 propagatedBuildInputs = [ numpy six ];
21
22 meta = with lib; {
23 description = "A Python string matching library including string tokenizers and string similarity measures";
24 homepage = https://sites.google.com/site/anhaidgroup/projects/magellan/py_stringmatching;
25 license = licenses.bsd3;
26 maintainers = with maintainers; [ ixxie ];
27 };
28}