blob: a365bcf924a6eabac44cd7f844466b8c34c7c18f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
cmake,
cython,
ninja,
scikit-build-core,
rapidfuzz-cpp,
rapidfuzz,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "levenshtein";
version = "0.27.3";
pyproject = true;
src = fetchFromGitHub {
owner = "rapidfuzz";
repo = "Levenshtein";
tag = "v${version}";
hash = "sha256-iKWS7gm0t3yPgeX5N09cTa3N1C6GXvIALueO8DlfLfE=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "Cython>=3.1.6,<3.2.0" Cython
'';
build-system = [
cmake
cython
ninja
scikit-build-core
];
dontUseCmakeConfigure = true;
buildInputs = [ rapidfuzz-cpp ];
dependencies = [ rapidfuzz ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "Levenshtein" ];
meta = {
description = "Functions for fast computation of Levenshtein distance and string similarity";
homepage = "https://github.com/rapidfuzz/Levenshtein";
changelog = "https://github.com/rapidfuzz/Levenshtein/blob/v${version}/HISTORY.md";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ fab ];
};
}
|