python3Packages.pytelegrambotapi: 4.30.0 -> 4.33.0 (#522585)

This commit is contained in:
Fabian Affolter
2026-05-21 10:31:10 +00:00
committed by GitHub
@@ -17,16 +17,16 @@
watchdog,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pytelegrambotapi";
version = "4.30.0";
version = "4.33.0";
pyproject = true;
src = fetchFromGitHub {
owner = "eternnoir";
repo = "pyTelegramBotAPI";
tag = version;
hash = "sha256-WFikKZxc9PjqcAcKrZIXaFO7XiUBAg8y60/UH2so4Vc=";
tag = finalAttrs.version;
hash = "sha256-za2krpb8Gll0zjuVFgQApDeROI7YSYo4fG6pi2hdv3g=";
};
build-system = [ hatchling ];
@@ -44,20 +44,19 @@ buildPythonPackage rec {
watchdog = [ watchdog ];
};
checkInputs = [
nativeCheckInputs = [
pytestCheckHook
requests
]
++ optional-dependencies.watchdog
++ optional-dependencies.aiohttp;
++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);
pythonImportsCheck = [ "telebot" ];
meta = {
description = "Python implementation for the Telegram Bot API";
homepage = "https://github.com/eternnoir/pyTelegramBotAPI";
changelog = "https://github.com/eternnoir/pyTelegramBotAPI/releases/tag/${src.tag}";
changelog = "https://github.com/eternnoir/pyTelegramBotAPI/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ das_j ];
};
}
})