1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 pname = "fuzzyfinder";
10 version = "2.1.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "c56d86f110866becad6690c7518f7036c20831c0f82fc87eba8fdb943132f04b";
16 };
17
18 nativeCheckInputs = [ pytestCheckHook ];
19
20 pythonImportsCheck = [ "fuzzyfinder" ];
21
22 meta = with lib; {
23 description = "Fuzzy Finder implemented in Python";
24 homepage = "https://github.com/amjith/fuzzyfinder";
25 license = licenses.bsd3;
26 maintainers = with maintainers; [ dotlambda ];
27 };
28}