8 buildPythonPackage rec {
9 pname = "editdistance-s";
11 format = "setuptools";
13 src = fetchFromGitHub {
17 sha256 = "0w2qd5b6a3c3ahd0xy9ykq4wzqk0byqwdqrr26dyn8j2425j46lg";
20 propagatedNativeBuildInputs = [ cffi ];
22 propagatedBuildInputs = [ cffi ];
24 nativeCheckInputs = [ pytestCheckHook ];
26 pythonImportsCheck = [ "editdistance_s" ];
29 description = "Fast implementation of the edit distance (Levenshtein distance)";
30 homepage = "https://github.com/asottile/editdistance-s";
31 license = with licenses; [ mit ];
32 maintainers = with maintainers; [ austinbutler ];