pythonPackages.fuzzyfinder: init at 2.1.0

This commit is contained in:
Robert Schütz 2021-02-22 23:06:16 +01:00
parent 9816b99e71
commit dd45f0d9ca
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "fuzzyfinder";
version = "2.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "c56d86f110866becad6690c7518f7036c20831c0f82fc87eba8fdb943132f04b";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "fuzzyfinder" ];
meta = with lib; {
description = "Fuzzy Finder implemented in Python";
homepage = "https://github.com/amjith/fuzzyfinder";
license = licenses.bsd3;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -2481,6 +2481,8 @@ in {
futures = callPackage ../development/python-modules/futures { };
fuzzyfinder = callPackage ../development/python-modules/fuzzyfinder { };
fuzzywuzzy = callPackage ../development/python-modules/fuzzywuzzy { };
fx2 = callPackage ../development/python-modules/fx2 { };