aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/py_stringmatching/default.nix
blob: 79d09daba9cc56b40239dfc1126999f93ff78e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildPythonPackage
, numpy
, six
, nose
, fetchPypi
}:

buildPythonPackage rec {
  pname = "py_stringmatching";
  version = "0.4.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c87f62698fba1612a18f8f44bd57f0c4e70aac2d7ca6dfb6ed46dabd2194453c";
  };

  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 ];
  };
}