Merge pull request #302455 from dotlambda/python3Packages.rapidfuzz

python311Packages.rapidfuzz: 3.7.0 -> 3.8.1
This commit is contained in:
Robert Schütz 2024-04-09 23:52:09 +00:00 committed by GitHub
commit f3c42fbcdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -8,13 +8,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "rapidfuzz-cpp";
version = "3.0.3";
version = "3.0.4";
src = fetchFromGitHub {
owner = "rapidfuzz";
repo = "rapidfuzz-cpp";
rev = "v${finalAttrs.version}";
hash = "sha256-6Df0X/gkS0i1RWv1uh0Hcn/lrLlIHeRp/+vfUmQ2EmI=";
hash = "sha256-urMdK+6ORHRgisppb700jaQpxLXAvXVjd8WDN7Zky3A=";
};
nativeBuildInputs = [

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