python3Packages.rapidfuzz: 2.0.8 -> 2.0.11

This commit is contained in:
Robert Schütz 2022-04-23 21:28:04 +00:00 committed by Robert Schütz
parent a4ba2bd977
commit 5f5f908cde

View file

@ -9,13 +9,16 @@
, jarowinkler , jarowinkler
, numpy , numpy
, hypothesis , hypothesis
, jarowinkler-cpp
, pandas , pandas
, pytestCheckHook , pytestCheckHook
, rapidfuzz-cpp
, taskflow
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "rapidfuzz"; pname = "rapidfuzz";
version = "2.0.8"; version = "2.0.11";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
@ -23,8 +26,7 @@ buildPythonPackage rec {
owner = "maxbachmann"; owner = "maxbachmann";
repo = "RapidFuzz"; repo = "RapidFuzz";
rev = "v${version}"; rev = "v${version}";
fetchSubmodules = true; hash = "sha256-npmdnUMrmbHgUgqMxKBytgtL1weWw6BjVNmBkYSKNMw=";
hash = "sha256-LA4UpP3jFcVZTYKuq8aBvfGgEhyOLeCUsUXEgSnwb94=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -36,6 +38,12 @@ buildPythonPackage rec {
dontUseCmakeConfigure = true; dontUseCmakeConfigure = true;
buildInputs = [
jarowinkler-cpp
rapidfuzz-cpp
taskflow
];
propagatedBuildInputs = [ propagatedBuildInputs = [
jarowinkler jarowinkler
numpy numpy