1{ lib
2, buildPythonPackage
3, numpy
4, six
5, nose
6, fetchPypi
7}:
8
9buildPythonPackage rec {
10 pname = "py_stringmatching";
11 version = "0.4.2";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "c87f62698fba1612a18f8f44bd57f0c4e70aac2d7ca6dfb6ed46dabd2194453c";
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}