We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4631e51 commit f25e1d1Copy full SHA for f25e1d1
pkgs/development/python-modules/rapidfuzz/default.nix
@@ -4,6 +4,7 @@
4
buildPythonPackage,
5
pythonOlder,
6
fetchFromGitHub,
7
+ fetchpatch2,
8
cmake,
9
cython,
10
ninja,
@@ -31,6 +32,15 @@ buildPythonPackage rec {
31
32
hash = "sha256-hLYidU09nCSOi42zgSh7dW83glxIjFY4C6BTmy/sf60=";
33
};
34
35
+ patches = [
36
+ # https://github.com/rapidfuzz/RapidFuzz/pull/414
37
+ (fetchpatch2 {
38
+ name = "support-taskflow-3.8.0.patch";
39
+ url = "https://github.com/rapidfuzz/RapidFuzz/commit/8f0429bbd970ccc036018b87108845c384911ff7.patch";
40
+ hash = "sha256-1wizdCkXYEMe5JWXUHCOCuDdS0z76FKimR47B3s2oVU=";
41
+ })
42
+ ];
43
+
44
postPatch = ''
45
substituteInPlace pyproject.toml \
46
--replace-fail "Cython >=3.0.11, <3.1.0" "Cython"
0 commit comments