11 buildPythonPackage rec {
12 pname = "python-twitch-client";
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
20 repo = "python-twitch-client";
21 rev = "refs/tags/${version}";
22 sha256 = "sha256-gxBpltwExb9bg3HLkz/MNlP5Q3/x97RHxhbwNqqanIM=";
29 propagatedBuildInputs = [
38 pythonImportsCheck = [
43 # Tests require network access
44 "test_delete_from_community"
49 description = "Python wrapper for the Twitch API";
50 homepage = "https://github.com/tsifrer/python-twitch-client";
51 changelog = "https://github.com/tsifrer/python-twitch-client/blob/${version}/CHANGELOG.md";
52 license = with licenses; [ mit ];
53 maintainers = with maintainers; [ fab ];