From a0389fe5c691f80bb794a0aa9731d5e4ad6752ac Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 9 Jan 2023 19:12:13 +0100 Subject: [PATCH] python310Packages.python-telegram-bot: add changelog to meta --- .../python-modules/python-telegram-bot/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-telegram-bot/default.nix b/pkgs/development/python-modules/python-telegram-bot/default.nix index 88cb826dbbf0..f9154729bdb3 100644 --- a/pkgs/development/python-modules/python-telegram-bot/default.nix +++ b/pkgs/development/python-modules/python-telegram-bot/default.nix @@ -43,9 +43,11 @@ buildPythonPackage rec { --replace "tornado==6.1" "tornado" ''; - setupPyGlobalFlags = [ "--with-upstream-urllib3" ]; + setupPyGlobalFlags = [ + "--with-upstream-urllib3" + ]; - # tests not included with release + # Tests not included with release doCheck = false; pythonImportsCheck = [ @@ -55,6 +57,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library to interface with the Telegram Bot API"; homepage = "https://python-telegram-bot.org"; + changelog = "https://github.com/python-telegram-bot/python-telegram-bot/blob/v${version}/CHANGES.rst"; license = licenses.lgpl3Only; maintainers = with maintainers; [ veprbl pingiun ]; };