python310Packages.rapidfuzz: 2.0.11 -> 2.0.15

https://github.com/maxbachmann/RapidFuzz/blob/v2.0.15/CHANGELOG.md
This commit is contained in:
Robert Schütz 2022-06-25 20:16:28 +00:00
parent ade62d2d44
commit b3449fddb3

View file

@ -7,6 +7,7 @@
, ninja
, rapidfuzz-capi
, scikit-build
, setuptools
, jarowinkler
, numpy
, hypothesis
@ -19,15 +20,17 @@
buildPythonPackage rec {
pname = "rapidfuzz";
version = "2.0.11";
version = "2.0.15";
disabled = pythonOlder "3.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "maxbachmann";
repo = "RapidFuzz";
rev = "v${version}";
hash = "sha256-npmdnUMrmbHgUgqMxKBytgtL1weWw6BjVNmBkYSKNMw=";
hash = "sha256-wn77gA6UCgsdDf3FZgjrA5gSWpWJg3YoUhx88X7aVcM=";
};
nativeBuildInputs = [
@ -36,6 +39,7 @@ buildPythonPackage rec {
ninja
rapidfuzz-capi
scikit-build
setuptools
];
dontUseCmakeConfigure = true;
@ -72,6 +76,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Rapid fuzzy string matching";
homepage = "https://github.com/maxbachmann/RapidFuzz";
changelog = "https://github.com/maxbachmann/RapidFuzz/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};