python3Packages.python-telegram-bot: 13.13 -> 13.14

This commit is contained in:
Martin Weinelt 2022-09-14 23:36:18 +02:00
parent 000bf33574
commit 0ae3aa1a15

View file

@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "python-telegram-bot";
version = "13.13";
version = "13.14";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-QpbYGji35e8fl5VlESjlj7NUZ4uNxNuTyhZsloKMV7I=";
hash = "sha256-6TkdQ+sRI94md6nSTqh4qdUyfWWyQZr7plP0dtJq7MM=";
};
propagatedBuildInputs = [
@ -39,7 +39,8 @@ buildPythonPackage rec {
substituteInPlace requirements.txt \
--replace "APScheduler==3.6.3" "APScheduler" \
--replace "cachetools==4.2.2" "cachetools"
--replace "cachetools==4.2.2" "cachetools" \
--replace "tornado==6.1" "tornado"
'';
setupPyGlobalFlags = "--with-upstream-urllib3";