python3Packages.pytwitchapi: make alias of twitchapi

The project is called twitchapi on PyPI.

authored by

Robert Schütz and committed by
Jonathan Ringer
0482396f aa9b3f4a

+2 -48
-45
pkgs/development/python-modules/pytwitchapi/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pythonOlder 5 - , aiohttp 6 - , python-dateutil 7 - , requests 8 - , websockets 9 - }: 10 - 11 - buildPythonPackage rec { 12 - pname = "pytwitchapi"; 13 - version = "2.5.2"; 14 - format = "setuptools"; 15 - 16 - disabled = pythonOlder "3.7"; 17 - 18 - src = fetchFromGitHub { 19 - owner = "Teekeks"; 20 - repo = "pyTwitchAPI"; 21 - rev = "v${version}"; 22 - hash = "sha256-i+oAx23bMu+jaXHPWElD5GJH6vSytW/9N1amsmma4Lc="; 23 - }; 24 - 25 - propagatedBuildInputs = [ 26 - aiohttp 27 - python-dateutil 28 - requests 29 - websockets 30 - ]; 31 - 32 - # Project has no tests. 33 - doCheck = false; 34 - 35 - pythonImportsCheck = [ 36 - "twitchAPI" 37 - ]; 38 - 39 - meta = with lib; { 40 - description = "Python implementation of the Twitch Helix API, its Webhook and PubSub"; 41 - homepage = "https://github.com/Teekeks/pyTwitchAPI"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ wolfangaukang ]; 44 - }; 45 - }
+1 -1
pkgs/development/python-modules/twitchapi/default.nix
··· 43 43 description = "Python implementation of the Twitch Helix API, its Webhook, PubSub and EventSub"; 44 44 homepage = "https://github.com/Teekeks/pyTwitchAPI"; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ dotlambda ]; 46 + maintainers = with maintainers; [ dotlambda wolfangaukang ]; 47 47 }; 48 48 }
+1
pkgs/top-level/python-aliases.nix
··· 96 96 python-subunit = subunit; # added 2021-09-10 97 97 pytest_xdist = pytest-xdist; # added 2021-01-04 98 98 python_simple_hipchat = python-simple-hipchat; # added 2021-07-21 99 + pytwitchapi = twitchapi; # added 2022-03-07 99 100 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09 100 101 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages"; 101 102 rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05
-2
pkgs/top-level/python-packages.nix
··· 8341 8341 8342 8342 pytweening = callPackage ../development/python-modules/pytweening { }; 8343 8343 8344 - pytwitchapi = callPackage ../development/python-modules/pytwitchapi { }; 8345 - 8346 8344 pytz = callPackage ../development/python-modules/pytz { }; 8347 8345 8348 8346 pytz-deprecation-shim = callPackage ../development/python-modules/pytz-deprecation-shim { };