9 buildPythonPackage rec {
10 pname = "editdistance-s";
12 format = "setuptools";
14 src = fetchFromGitHub {
18 sha256 = "0w2qd5b6a3c3ahd0xy9ykq4wzqk0byqwdqrr26dyn8j2425j46lg";
21 propagatedNativeBuildInputs = [ cffi ];
23 propagatedBuildInputs = [ cffi ];
25 nativeCheckInputs = [ pytestCheckHook ];
27 pythonImportsCheck = [ "editdistance_s" ];
30 description = "Fast implementation of the edit distance (Levenshtein distance)";
31 homepage = "https://github.com/asottile/editdistance-s";
32 license = with licenses; [ mit ];
33 maintainers = with maintainers; [ austinbutler ];