From 301924d09c3b8f0122bf91d4bc95dc109e0621f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 18 Jan 2023 19:19:33 -0800 Subject: [PATCH] python310Packages.twitchapi: 3.2.1 -> 3.4.1 https://github.com/Teekeks/pyTwitchAPI/blob/v3.4.1/docs/changelog.rst --- pkgs/development/python-modules/twitchapi/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/twitchapi/default.nix b/pkgs/development/python-modules/twitchapi/default.nix index 96fdbd249746..4681e4829f48 100644 --- a/pkgs/development/python-modules/twitchapi/default.nix +++ b/pkgs/development/python-modules/twitchapi/default.nix @@ -4,14 +4,12 @@ , fetchPypi , aiohttp , python-dateutil -, requests , typing-extensions -, websockets }: buildPythonPackage rec { pname = "twitchapi"; - version = "3.2.1"; + version = "3.4.1"; disabled = pythonOlder "3.7"; @@ -20,15 +18,13 @@ buildPythonPackage rec { src = fetchPypi { pname = "twitchAPI"; inherit version; - hash = "sha256-E01LkuTnHy2R4Vdr2iLNi7f8KjsIRoDHokyjLAnWieM="; + hash = "sha256-q35ijx4zDR07k9al11T1H7SPYG9M8g8+rD/TNrkL2Ek="; }; propagatedBuildInputs = [ aiohttp python-dateutil - requests typing-extensions - websockets ]; # upstream has no tests @@ -43,6 +39,7 @@ buildPythonPackage rec { ]; meta = with lib; { + changelog = "https://github.com/Teekeks/pyTwitchAPI/blob/v${version}/docs/changelog.rst"; description = "Python implementation of the Twitch Helix API, its Webhook, PubSub and EventSub"; homepage = "https://github.com/Teekeks/pyTwitchAPI"; license = licenses.mit;