nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.twitchapi: 4.4.0 -> 4.5.0

Diff: https://github.com/Teekeks/pyTwitchAPI/compare/refs/tags/v4.4.0...refs/tags/v4.5.0

Changelog: https://github.com/Teekeks/pyTwitchAPI/blob/v4.5.0/docs/changelog.rst

+9 -12
+9 -12
pkgs/development/python-modules/twitchapi/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - pythonOlder, 5 4 fetchFromGitHub, 6 5 setuptools, 7 6 aiohttp, ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "twitchapi"; 13 - version = "4.4.0"; 14 - 15 - disabled = pythonOlder "3.7"; 16 - 14 + version = "4.5.0"; 17 15 pyproject = true; 18 16 19 17 src = fetchFromGitHub { 20 18 owner = "Teekeks"; 21 19 repo = "pyTwitchAPI"; 22 20 tag = "v${version}"; 23 - hash = "sha256-yN7KsiPnhGSm8wj44zn1TzGhRDIMflkKiRnBlVT5i2o="; 21 + hash = "sha256-3kAR/9OS58sDRUiCcQAI7KCCPpnclBNR4SkwDNJs9mo="; 24 22 }; 25 23 26 24 postPatch = '' ··· 40 44 doCheck = false; 41 45 42 46 pythonImportsCheck = [ 47 + "twitchAPI.chat" 43 48 "twitchAPI.eventsub" 49 + "twitchAPI.helper" 44 50 "twitchAPI.oauth" 45 - "twitchAPI.pubsub" 46 51 "twitchAPI.twitch" 47 52 "twitchAPI.type" 48 53 ]; 49 54 50 - meta = with lib; { 51 - changelog = "https://github.com/Teekeks/pyTwitchAPI/blob/${src.rev}/docs/changelog.rst"; 52 - description = "Python implementation of the Twitch Helix API, its Webhook, PubSub and EventSub"; 55 + meta = { 56 + changelog = "https://github.com/Teekeks/pyTwitchAPI/blob/${src.tag}/docs/changelog.rst"; 57 + description = "Python implementation of the Twitch Helix API, EventSub and Chat"; 53 58 homepage = "https://github.com/Teekeks/pyTwitchAPI"; 54 - license = licenses.mit; 55 - maintainers = with maintainers; [ 59 + license = lib.licenses.mit; 60 + maintainers = with lib.maintainers; [ 56 61 dotlambda 57 62 ]; 58 63 };