python3Packages.pytwitchapi: add format

This commit is contained in:
Fabian Affolter 2022-02-25 08:35:28 +01:00 committed by GitHub
parent 4f1ec88099
commit 20c9e4013e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,13 +11,15 @@
buildPythonPackage rec {
pname = "pytwitchapi";
version = "2.5.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Teekeks";
repo = "pyTwitchAPI";
rev = "v${version}";
sha256 = "sha256-i+oAx23bMu+jaXHPWElD5GJH6vSytW/9N1amsmma4Lc=";
hash = "sha256-i+oAx23bMu+jaXHPWElD5GJH6vSytW/9N1amsmma4Lc=";
};
propagatedBuildInputs = [
@ -30,7 +32,9 @@ buildPythonPackage rec {
# Project has no tests.
doCheck = false;
pythonImportsCheck = [ "twitchAPI" ];
pythonImportsCheck = [
"twitchAPI"
];
meta = with lib; {
description = "Python implementation of the Twitch Helix API, its Webhook and PubSub";