python3Packages.pytwitchapi: add format
This commit is contained in:
parent
4f1ec88099
commit
20c9e4013e
1 changed files with 6 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue