1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "fuzzyfinder";
9 version = "2.1.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "c56d86f110866becad6690c7518f7036c20831c0f82fc87eba8fdb943132f04b";
14 };
15
16 nativeCheckInputs = [
17 pytestCheckHook
18 ];
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}