50 lines
993 B
Nix
50 lines
993 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, hypothesis
|
|
, levenshtein
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "thefuzz";
|
|
version = "0.22.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-cTgDmn7PVA2jI3kthZLvmQKx1563jBR9TyBmTeefNoA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ levenshtein ];
|
|
|
|
# Skip linting
|
|
postPatch = ''
|
|
substituteInPlace test_thefuzz.py --replace "import pycodestyle" ""
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"thefuzz"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Skip linting
|
|
"test_pep8_conformance"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Fuzzy string matching for Python";
|
|
homepage = "https://github.com/seatgeek/thefuzz";
|
|
changelog = "https://github.com/seatgeek/thefuzz/blob/${version}/CHANGES.rst";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ sumnerevans ];
|
|
};
|
|
}
|