Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / py_stringmatching / default.nix
blob79d09daba9cc56b40239dfc1126999f93ff78e3a
1 { lib
2 , buildPythonPackage
3 , numpy
4 , six
5 , nose
6 , fetchPypi
7 }:
9 buildPythonPackage rec {
10   pname = "py_stringmatching";
11   version = "0.4.2";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "c87f62698fba1612a18f8f44bd57f0c4e70aac2d7ca6dfb6ed46dabd2194453c";
16   };
18   checkInputs = [ nose ];
20   propagatedBuildInputs = [ numpy six ];
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   };