python3Packages.python-telegram-bot: 13.7 -> 13.8.1

This commit is contained in:
Fabian Affolter 2021-11-09 18:18:00 +01:00
parent ed2edad963
commit e481649944

@ -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";