ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / fuzzyfinder / default.nix
bloba422e5606b0b086a52104969345fe19d643ec6d5
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   checkInputs = [
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   };