python3Packages.python-telegram-bot: 13.0 -> 13.3 (#115287)

Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by Jelle Besseling Dmitry Kalinkin Sandro and committed by GitHub 18750336 00038762

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