Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / fuzzyfinder / default.nix
blob2107dd7b2d6224f0d98203aeed9aac921ef5e64d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "fuzzyfinder";
9   version = "2.1.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "c56d86f110866becad6690c7518f7036c20831c0f82fc87eba8fdb943132f04b";
14   };
16   nativeCheckInputs = [
17     pytestCheckHook
18   ];
20   pythonImportsCheck = [ "fuzzyfinder" ];
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   };