From 2309d5a571ff017408dc2b091c8b3fca20b98b27 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 3 Dec 2022 11:50:14 +0100 Subject: [PATCH] python310Packages.rapidfuzz: cleanup --- pkgs/development/python-modules/rapidfuzz/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/rapidfuzz/default.nix b/pkgs/development/python-modules/rapidfuzz/default.nix index 3c0ac6c0c7fc..94b6140a6a22 100644 --- a/pkgs/development/python-modules/rapidfuzz/default.nix +++ b/pkgs/development/python-modules/rapidfuzz/default.nix @@ -8,10 +8,8 @@ , ninja , scikit-build , setuptools -, jarowinkler , numpy , hypothesis -, jarowinkler-cpp , pandas , pytestCheckHook , rapidfuzz-cpp @@ -44,7 +42,6 @@ buildPythonPackage rec { dontUseCmakeConfigure = true; buildInputs = [ - jarowinkler-cpp rapidfuzz-cpp taskflow ]; @@ -60,10 +57,13 @@ buildPythonPackage rec { ]; propagatedBuildInputs = [ - jarowinkler numpy ]; + preCheck = '' + export RAPIDFUZZ_IMPLEMENTATION=cpp + ''; + checkInputs = [ hypothesis pandas