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

python3Packages.python-telegram-bot: 13.3 -> 13.4.1

authored by

Sandro and committed by
GitHub
f52f1109 aabba682

+16 -10
+16 -10
pkgs/development/python-modules/python-telegram-bot/default.nix
··· 1 1 { lib 2 - , fetchPypi 2 + , APScheduler 3 3 , buildPythonPackage 4 4 , certifi 5 5 , decorator 6 + , fetchPypi 6 7 , future 7 - , urllib3 8 + , isPy3k 8 9 , tornado 9 - , pytest 10 - , APScheduler 11 - , isPy3k 10 + , urllib3 12 11 }: 13 12 14 13 buildPythonPackage rec { 15 14 pname = "python-telegram-bot"; 16 - version = "13.3"; 15 + version = "13.4.1"; 17 16 disabled = !isPy3k; 18 17 19 18 src = fetchPypi { 20 19 inherit pname version; 21 - hash = "sha256-dw1sGfdeUw3n9qh4TsBpRdqEvNI0SnKTK4wqBaeM1CE="; 20 + sha256 = "141w3701jjl460702xddqvi3hswp24jnkl6cakvz2aqrmcyxq7sc"; 22 21 }; 23 22 24 - checkInputs = [ pytest ]; 25 - propagatedBuildInputs = [ certifi future urllib3 tornado decorator APScheduler ]; 23 + propagatedBuildInputs = [ 24 + APScheduler 25 + certifi 26 + decorator 27 + future 28 + tornado 29 + urllib3 30 + ]; 26 31 27 32 # --with-upstream-urllib3 is not working properly 28 33 postPatch = '' ··· 31 36 substituteInPlace requirements.txt \ 32 37 --replace 'APScheduler==3.6.3' 'APScheduler' 33 38 ''; 39 + 34 40 setupPyGlobalFlags = "--with-upstream-urllib3"; 35 41 36 42 # tests not included with release ··· 38 44 pythonImportsCheck = [ "telegram" ]; 39 45 40 46 meta = with lib; { 41 - description = "This library provides a pure Python interface for the Telegram Bot API."; 47 + description = "Python library to interface with the Telegram Bot API"; 42 48 homepage = "https://python-telegram-bot.org"; 43 49 license = licenses.lgpl3Only; 44 50 maintainers = with maintainers; [ veprbl pingiun ];