nixpkgs-suyu/pkgs/development/python-modules/pytwitchapi/default.nix
2022-02-25 08:35:28 +01:00

45 lines
863 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, aiohttp
, python-dateutil
, requests
, websockets
}:
buildPythonPackage rec {
pname = "pytwitchapi";
version = "2.5.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Teekeks";
repo = "pyTwitchAPI";
rev = "v${version}";
hash = "sha256-i+oAx23bMu+jaXHPWElD5GJH6vSytW/9N1amsmma4Lc=";
};
propagatedBuildInputs = [
aiohttp
python-dateutil
requests
websockets
];
# Project has no tests.
doCheck = false;
pythonImportsCheck = [
"twitchAPI"
];
meta = with lib; {
description = "Python implementation of the Twitch Helix API, its Webhook and PubSub";
homepage = "https://github.com/Teekeks/pyTwitchAPI";
license = licenses.mit;
maintainers = with maintainers; [ wolfangaukang ];
};
}