12 buildPythonPackage rec {
13 pname = "py-stringmatching";
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-XdHLHwT/sgHM+uQ4lxw9c+AcAdJjL6OVgfwtJkYLoBs=";
24 nativeBuildInputs = [ setuptools ];
26 propagatedBuildInputs = [
31 nativeCheckInputs = [ pytestCheckHook ];
37 pythonImportsCheck = [ "py_stringmatching" ];
40 description = "Python string matching library including string tokenizers and string similarity measures";
41 homepage = "https://github.com/anhaidgroup/py_stringmatching";
42 changelog = "https://github.com/anhaidgroup/py_stringmatching/blob/v${version}/CHANGES.txt";
43 license = licenses.bsd3;