Merge pull request #145222 from fabaff/bump-python-telegram-bot

python3Packages.python-telegram-bot: 13.7 -> 13.8.1
This commit is contained in:
Jörg Thalheim 2021-11-09 20:48:52 +00:00 committed by GitHub
commit e71c1b94e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,12 +13,14 @@
buildPythonPackage rec {
pname = "python-telegram-bot";
version = "13.7";
version = "13.8.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-JN91RZ4zW5a6/6aZFnn4RL1CaXivWmnKQZoKxDpAYCw=";
sha256 = "sha256-sGaR5Vw1lDJn7mNtmqcCs1eRVdLzLg4tbX8R8LXnJ/A=";
};
propagatedBuildInputs = [
@ -45,7 +47,9 @@ buildPythonPackage rec {
# tests not included with release
doCheck = false;
pythonImportsCheck = [ "telegram" ];
pythonImportsCheck = [
"telegram"
];
meta = with lib; {
description = "Python library to interface with the Telegram Bot API";