11 buildPythonPackage rec {
12 pname = "editdistance";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-Ncdg8S/UHYqJ1uFnHk9qhHMM3Lrop00woSu3PLKvuBI=";
35 pythonImportsCheck = [
40 description = "Python implementation of the edit distance (Levenshtein distance)";
41 homepage = "https://github.com/roy-ht/editdistance";
42 license = with licenses; [ mit ];
43 maintainers = with maintainers; [ fab ];