11 buildPythonPackage rec {
12 pname = "jarowinkler";
15 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
20 owner = "maxbachmann";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-B3upTBNqMyi+CH7Zx04wceEXjGJnr6S3BIl87AQkfbo=";
30 propagatedBuildInputs = [
39 pythonImportsCheck = [ "jarowinkler" ];
42 description = "Library for fast approximate string matching using Jaro and Jaro-Winkler similarity";
43 homepage = "https://github.com/maxbachmann/JaroWinkler";
44 changelog = "https://github.com/maxbachmann/JaroWinkler/blob/${src.rev}/CHANGELOG.md";
45 license = licenses.mit;
46 maintainers = with maintainers; [ dotlambda ];