pythonPackages.fuzzyfinder: init at 2.1.0
This commit is contained in:
parent
9816b99e71
commit
dd45f0d9ca
28
pkgs/development/python-modules/fuzzyfinder/default.nix
Normal file
28
pkgs/development/python-modules/fuzzyfinder/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user