Merge pull request #227355 from dotlambda/rapidfuzz-cpp-1.11.3

rapidfuzz-cpp: 1.11.2 -> 1.11.3
This commit is contained in:
Nick Cao 2023-04-21 10:08:19 +08:00 committed by GitHub
commit 9b7eaf288a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 2 deletions

View File

@ -7,13 +7,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "rapidfuzz-cpp"; pname = "rapidfuzz-cpp";
version = "1.11.2"; version = "1.11.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "maxbachmann"; owner = "maxbachmann";
repo = "rapidfuzz-cpp"; repo = "rapidfuzz-cpp";
rev = "v${finalAttrs.version}"; rev = "v${finalAttrs.version}";
hash = "sha256-1TO0CVq/b9odiwnfOQAcPiSM4EuxIAUPs+zS3F0caHg="; hash = "sha256-Qqdw5dy+JUBSDpbWEh3Ap3+3h+CcNdfBL+rloRzWGEQ=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -5,6 +5,7 @@
, poetry-core , poetry-core
, pytest-mock , pytest-mock
, pytestCheckHook , pytestCheckHook
, pythonRelaxDepsHook
, rapidfuzz , rapidfuzz
}: }:
@ -22,6 +23,11 @@ buildPythonPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
poetry-core poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"rapidfuzz"
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [

View File

@ -5,6 +5,7 @@
, poetry-core , poetry-core
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pythonRelaxDepsHook
, rapidfuzz , rapidfuzz
, requests , requests
}: }:
@ -25,6 +26,11 @@ buildPythonPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
poetry-core poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"rapidfuzz"
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [