Merge pull request #35471 from ixxie/py_stringmatching
pythonPackages.py_stringmatching: init at 0.4.0
This commit is contained in:
commit
afd364a0ad
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -279,6 +279,8 @@ in {
|
||||||
|
|
||||||
Pmw = callPackage ../development/python-modules/Pmw { };
|
Pmw = callPackage ../development/python-modules/Pmw { };
|
||||||
|
|
||||||
|
py_stringmatching = callPackage ../development/python-modules/py_stringmatching { };
|
||||||
|
|
||||||
pyaes = callPackage ../development/python-modules/pyaes { };
|
pyaes = callPackage ../development/python-modules/pyaes { };
|
||||||
|
|
||||||
pyamf = callPackage ../development/python-modules/pyamf { };
|
pyamf = callPackage ../development/python-modules/pyamf { };
|
||||||
|
|
Loading…
Reference in New Issue