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