2021-02-13 14:23:35 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, requests, rx, pytestCheckHook, responses, isPy3k }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "twitch-python";
|
2022-04-27 09:35:20 +00:00
|
|
|
version = "0.0.20";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-04-27 09:35:20 +00:00
|
|
|
sha256 = "sha256-bgnXIQuOCrtoknZ9ciB56zWxTCnncM2032TVaey6oXw=";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "'pipenv'," ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests rx ];
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook responses ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "twitch" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Twitch module for Python";
|
|
|
|
homepage = "https://github.com/PetterKraabol/Twitch-Python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ marsam ];
|
|
|
|
};
|
|
|
|
}
|