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 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "rapidfuzz-cpp"; 12 - version = "3.3.2"; 13 14 src = fetchFromGitHub { 15 owner = "rapidfuzz"; 16 repo = "rapidfuzz-cpp"; 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-AuH0Vq0Le5T9vDCpEviEjfNpwJFnFtqj/taFJy+YoMY="; 19 }; 20 21 nativeBuildInputs = [
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "rapidfuzz-cpp"; 12 + version = "3.3.3"; 13 14 src = fetchFromGitHub { 15 owner = "rapidfuzz"; 16 repo = "rapidfuzz-cpp"; 17 rev = "v${finalAttrs.version}"; 18 + hash = "sha256-uyOkp+a08V+4Hvwp1OY6XMMd37z5RI+W5G4URu6FQtU="; 19 }; 20 21 nativeBuildInputs = [
+4
pkgs/by-name/we/weblate/package.nix
··· 67 ${python.pythonOnBuildForHost.interpreter} manage.py compress 68 ''; 69 70 dependencies = 71 with python.pkgs; 72 [
··· 67 ${python.pythonOnBuildForHost.interpreter} manage.py compress 68 ''; 69 70 + pythonRelaxDeps = [ 71 + "rapidfuzz" 72 + ]; 73 + 74 dependencies = 75 with python.pkgs; 76 [
+2 -22
pkgs/development/python-modules/rapidfuzz/default.nix
··· 3 stdenv, 4 buildPythonPackage, 5 fetchFromGitHub, 6 - fetchpatch, 7 cmake, 8 cython, 9 ninja, ··· 18 19 buildPythonPackage rec { 20 pname = "rapidfuzz"; 21 - version = "3.13.0"; 22 pyproject = true; 23 24 src = fetchFromGitHub { 25 owner = "maxbachmann"; 26 repo = "RapidFuzz"; 27 tag = "v${version}"; 28 - hash = "sha256-vwAqlTq4HIbmCL1HsHcgfVWETImxdqTsnenmX2RGXw8="; 29 }; 30 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 build-system = [ 46 cmake 47 cython ··· 74 hypothesis 75 pandas 76 pytestCheckHook 77 - ]; 78 - 79 - disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ 80 - # segfaults 81 - "test_cdist" 82 ]; 83 84 pythonImportsCheck = [
··· 3 stdenv, 4 buildPythonPackage, 5 fetchFromGitHub, 6 cmake, 7 cython, 8 ninja, ··· 17 18 buildPythonPackage rec { 19 pname = "rapidfuzz"; 20 + version = "3.14.0"; 21 pyproject = true; 22 23 src = fetchFromGitHub { 24 owner = "maxbachmann"; 25 repo = "RapidFuzz"; 26 tag = "v${version}"; 27 + hash = "sha256-KPVv4WU6MC17QDvcdpV86FH+FUcS8RMHxzmN/Gx2Cx8="; 28 }; 29 30 build-system = [ 31 cmake 32 cython ··· 59 hypothesis 60 pandas 61 pytestCheckHook 62 ]; 63 64 pythonImportsCheck = [