12 buildPythonPackage rec {
13 pname = "jarowinkler";
16 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
21 owner = "maxbachmann";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-B3upTBNqMyi+CH7Zx04wceEXjGJnr6S3BIl87AQkfbo=";
27 nativeBuildInputs = [ setuptools ];
29 propagatedBuildInputs = [ rapidfuzz ];
36 pythonImportsCheck = [ "jarowinkler" ];
39 description = "Library for fast approximate string matching using Jaro and Jaro-Winkler similarity";
40 homepage = "https://github.com/maxbachmann/JaroWinkler";
41 changelog = "https://github.com/maxbachmann/JaroWinkler/blob/${src.rev}/CHANGELOG.md";
42 license = licenses.mit;
43 maintainers = with maintainers; [ dotlambda ];