python312Packages.fuzzyfinder: 2.1.0 -> 2.2.0 (#340638)

This commit is contained in:
Nick Cao 2024-09-09 08:31:53 -04:00 committed by GitHub
commit d7c15805a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,25 +1,31 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "fuzzyfinder";
version = "2.1.0";
format = "setuptools";
version = "2.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "c56d86f110866becad6690c7518f7036c20831c0f82fc87eba8fdb943132f04b";
src = fetchFromGitHub {
owner = "amjith";
repo = "fuzzyfinder";
rev = "refs/tags/v${version}";
hash = "sha256-QWUABljgtzsZONl1klCrxEh0tPYodMOXokEb3YvWsyg=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "fuzzyfinder" ];
meta = with lib; {
changelog = "https://github.com/amjith/fuzzyfinder/blob/${src.rev}/CHANGELOG.rst";
description = "Fuzzy Finder implemented in Python";
homepage = "https://github.com/amjith/fuzzyfinder";
license = licenses.bsd3;