My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/fuzzyfinder/default.nix

28 lines
574 B

{ 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 ];
};
}