Robert Schütz 2024-04-07 16:03:13 -07:00
parent 2942a15fdc
commit 26307aa932
1 changed files with 4 additions and 4 deletions

View File

@ -18,16 +18,16 @@
buildPythonPackage rec {
pname = "rapidfuzz";
version = "3.7.0";
version = "3.8.1";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "maxbachmann";
repo = "RapidFuzz";
rev = "refs/tags/v${version}";
hash = "sha256-BwU9Ti35Dsaa+kT78h3lsjw4sI1RQdhukTPTeJDyBw0=";
hash = "sha256-ljuqezL/Iu4VQelPi7KApBknDrWzikX7FD5iw5NcOL4=";
};
postPatch = ''
@ -35,7 +35,7 @@ buildPythonPackage rec {
--replace-fail "Cython >=3.0.9, <3.1.0" "Cython"
'';
nativeBuildInputs = [
build-system = [
cmake
cython_3
ninja