python310Packages.twitchapi: 3.2.1 -> 3.4.1

https://github.com/Teekeks/pyTwitchAPI/blob/v3.4.1/docs/changelog.rst
This commit is contained in:
Robert Schütz 2023-01-18 19:19:33 -08:00
parent 936b567ca6
commit 301924d09c

View File

@ -4,14 +4,12 @@
, fetchPypi , fetchPypi
, aiohttp , aiohttp
, python-dateutil , python-dateutil
, requests
, typing-extensions , typing-extensions
, websockets
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "twitchapi"; pname = "twitchapi";
version = "3.2.1"; version = "3.4.1";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -20,15 +18,13 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
pname = "twitchAPI"; pname = "twitchAPI";
inherit version; inherit version;
hash = "sha256-E01LkuTnHy2R4Vdr2iLNi7f8KjsIRoDHokyjLAnWieM="; hash = "sha256-q35ijx4zDR07k9al11T1H7SPYG9M8g8+rD/TNrkL2Ek=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
python-dateutil python-dateutil
requests
typing-extensions typing-extensions
websockets
]; ];
# upstream has no tests # upstream has no tests
@ -43,6 +39,7 @@ buildPythonPackage rec {
]; ];
meta = with lib; { 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"; description = "Python implementation of the Twitch Helix API, its Webhook, PubSub and EventSub";
homepage = "https://github.com/Teekeks/pyTwitchAPI"; homepage = "https://github.com/Teekeks/pyTwitchAPI";
license = licenses.mit; license = licenses.mit;