rapidfuzz-cpp: 3.3.2 -> 3.3.3 (#437560)

authored by dotlambda and committed by GitHub abfab2b0 4eda23ac

+8 -24
+2 -2
pkgs/by-name/ra/rapidfuzz-cpp/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "rapidfuzz-cpp"; 12 - version = "3.3.2"; 12 + version = "3.3.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "rapidfuzz"; 16 16 repo = "rapidfuzz-cpp"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-AuH0Vq0Le5T9vDCpEviEjfNpwJFnFtqj/taFJy+YoMY="; 18 + hash = "sha256-uyOkp+a08V+4Hvwp1OY6XMMd37z5RI+W5G4URu6FQtU="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+4
pkgs/by-name/we/weblate/package.nix
··· 67 67 ${python.pythonOnBuildForHost.interpreter} manage.py compress 68 68 ''; 69 69 70 + pythonRelaxDeps = [ 71 + "rapidfuzz" 72 + ]; 73 + 70 74 dependencies = 71 75 with python.pkgs; 72 76 [
+2 -22
pkgs/development/python-modules/rapidfuzz/default.nix
··· 3 3 stdenv, 4 4 buildPythonPackage, 5 5 fetchFromGitHub, 6 - fetchpatch, 7 6 cmake, 8 7 cython, 9 8 ninja, ··· 18 17 19 18 buildPythonPackage rec { 20 19 pname = "rapidfuzz"; 21 - version = "3.13.0"; 20 + version = "3.14.0"; 22 21 pyproject = true; 23 22 24 23 src = fetchFromGitHub { 25 24 owner = "maxbachmann"; 26 25 repo = "RapidFuzz"; 27 26 tag = "v${version}"; 28 - hash = "sha256-vwAqlTq4HIbmCL1HsHcgfVWETImxdqTsnenmX2RGXw8="; 27 + hash = "sha256-KPVv4WU6MC17QDvcdpV86FH+FUcS8RMHxzmN/Gx2Cx8="; 29 28 }; 30 29 31 - patches = [ 32 - # https://github.com/rapidfuzz/RapidFuzz/pull/446 33 - (fetchpatch { 34 - name = "support-taskflow-3.10.0.patch"; 35 - url = "https://github.com/rapidfuzz/RapidFuzz/commit/bba3281cc61ecc4ab4affe5d2d50389a4f6d7556.patch"; 36 - hash = "sha256-kAS6xsPY7eUTfKO+EAOW8bktY4cApvLEpRMciJEsPgk="; 37 - }) 38 - ]; 39 - 40 - postPatch = '' 41 - substituteInPlace pyproject.toml \ 42 - --replace-fail "Cython >=3.0.12, <3.1.0" Cython 43 - ''; 44 - 45 30 build-system = [ 46 31 cmake 47 32 cython ··· 74 59 hypothesis 75 60 pandas 76 61 pytestCheckHook 77 - ]; 78 - 79 - disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ 80 - # segfaults 81 - "test_cdist" 82 62 ]; 83 63 84 64 pythonImportsCheck = [