python310Packages.levenshtein: 0.18.1 -> 0.18.2

https://github.com/maxbachmann/Levenshtein/releases/tag/v0.18.2
This commit is contained in:
Robert Schütz 2022-07-05 15:47:27 +00:00
parent 07f1d6bab7
commit ec9ce3c94b

View file

@ -6,12 +6,13 @@
, cython
, pytestCheckHook
, rapidfuzz
, rapidfuzz-cpp
, scikit-build
}:
buildPythonPackage rec {
pname = "levenshtein";
version = "0.18.1";
version = "0.18.2";
format = "pyproject";
disabled = pythonOlder "3.6";
@ -20,9 +21,7 @@ buildPythonPackage rec {
owner = "maxbachmann";
repo = "Levenshtein";
rev = "v${version}";
# https://github.com/maxbachmann/Levenshtein/issues/22
fetchSubmodules = true;
sha256 = "sha256-WREYdD5MFOpCzH4BSceRpzQZdpi3Xxxn0DpMvDsNlGo=";
hash = "sha256-FmEB0i235rzK6S1MV189iDNB+CYpcBvcdVE+kdclwmE=";
};
nativeBuildInputs = [
@ -33,6 +32,10 @@ buildPythonPackage rec {
dontUseCmakeConfigure = true;
buildInputs = [
rapidfuzz-cpp
];
propagatedBuildInputs = [
rapidfuzz
];