python310Packages.rapidfuzz: 2.0.11 -> 2.0.15
https://github.com/maxbachmann/RapidFuzz/blob/v2.0.15/CHANGELOG.md
This commit is contained in:
parent
ade62d2d44
commit
b3449fddb3
1 changed files with 7 additions and 2 deletions
|
@ -7,6 +7,7 @@
|
||||||
, ninja
|
, ninja
|
||||||
, rapidfuzz-capi
|
, rapidfuzz-capi
|
||||||
, scikit-build
|
, scikit-build
|
||||||
|
, setuptools
|
||||||
, jarowinkler
|
, jarowinkler
|
||||||
, numpy
|
, numpy
|
||||||
, hypothesis
|
, hypothesis
|
||||||
|
@ -19,15 +20,17 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "rapidfuzz";
|
pname = "rapidfuzz";
|
||||||
version = "2.0.11";
|
version = "2.0.15";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "maxbachmann";
|
owner = "maxbachmann";
|
||||||
repo = "RapidFuzz";
|
repo = "RapidFuzz";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-npmdnUMrmbHgUgqMxKBytgtL1weWw6BjVNmBkYSKNMw=";
|
hash = "sha256-wn77gA6UCgsdDf3FZgjrA5gSWpWJg3YoUhx88X7aVcM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -36,6 +39,7 @@ buildPythonPackage rec {
|
||||||
ninja
|
ninja
|
||||||
rapidfuzz-capi
|
rapidfuzz-capi
|
||||||
scikit-build
|
scikit-build
|
||||||
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
dontUseCmakeConfigure = true;
|
dontUseCmakeConfigure = true;
|
||||||
|
@ -72,6 +76,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Rapid fuzzy string matching";
|
description = "Rapid fuzzy string matching";
|
||||||
homepage = "https://github.com/maxbachmann/RapidFuzz";
|
homepage = "https://github.com/maxbachmann/RapidFuzz";
|
||||||
|
changelog = "https://github.com/maxbachmann/RapidFuzz/blob/${src.rev}/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ dotlambda ];
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue