Unverified Commit 56941617 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #224109 from dotlambda/rapidfuzz-2.14.0

python310Packages.rapidfuzz: 2.13.7 -> 2.14.0
parents fea1100c 5c5dc433
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, fetchurl
, pythonOlder
, substituteAll
@@ -48,6 +49,11 @@ let
      libpq = "${postgresql.lib}/lib/libpq${stdenv.hostPlatform.extensions.sharedLibrary}";
      libc = "${stdenv.cc.libc}/lib/libc.so.6";
    })
    (fetchpatch {
      name = "cython-3.0.0b1-compat.patch";
      url = "https://github.com/psycopg/psycopg/commit/573446a14312f36257ed9dcfb8eb2756b69d5d9b.patch";
      hash = "sha256-NWItarNb/Yyfj1avb/SXTkinVGxvWUGH8y6tR/zhVmE=";
    })
  ];

  baseMeta = {
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@

buildPythonPackage rec {
  pname = "rapidfuzz";
  version = "2.13.7";
  version = "2.14.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
    owner = "maxbachmann";
    repo = "RapidFuzz";
    rev = "refs/tags/v${version}";
    hash = "sha256-ZovXYOoLriAmJHptolD135qCn7XHeVvzLJNzI08mqwY=";
    hash = "sha256-qZfVr1V7YBuMoFiMwRoEVosof6kCSiIb944gXzPn4P0=";
  };

  nativeBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -2210,10 +2210,10 @@ self: super: with self; {
  cython = callPackage ../development/python-modules/Cython { };

  cython_3 = self.cython.overridePythonAttrs (old: rec {
    version = "3.0.0a11";
    version = "3.0.0b2";
    src = old.src.override {
      inherit version;
      hash = "sha256-5GckkfsxVGuau2Nnf2OOc4CF3JMhOYFwlW72+/wOFyY=";
      hash = "sha256-bEKAZWV56STBGURyR2ZLsi+v7cfezKWTqOogvdV9Z1U=";
    };
    patches = [ ];
  });