Merge pull request #169104 from r-ryantm/auto-update/python3.10-pyTelegramBotAPI

python310Packages.pytelegrambotapi: 4.4.0 -> 4.4.1
This commit is contained in:
Fabian Affolter 2022-04-18 17:33:15 +02:00 committed by GitHub
commit 759a1f7742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, aiohttp, requests }:
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, requests
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyTelegramBotAPI";
version = "4.4.0";
version = "4.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-5vIjVqvr/+Cok9z3L+CaDIve2tb0mMVaMMPdMs5Ijmo=";
hash = "sha256-3Qppp/UDKiGChnvMOgW8EKygI75gYzv37c0ctExmK+g=";
};
propagatedBuildInputs = [ aiohttp requests ];
propagatedBuildInputs = [
aiohttp
requests
];
pythonImportsCheck = [
"telebot"
];
meta = with lib; {
homepage = "https://github.com/eternnoir/pyTelegramBotAPI";
description = "A simple, but extensible Python implementation for the Telegram Bot API";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ das_j ];
};
}