Merge pull request #156775 from fabaff/bump-rokuecp

python3Packages.rokuecp: 0.8.4 -> 0.11.0
This commit is contained in:
Fabian Affolter 2022-01-26 22:03:04 +01:00 committed by GitHub
commit 34f5b57532
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
, aiohttp
, aresponses
, buildPythonPackage
, cachetools
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
@ -12,20 +13,21 @@
buildPythonPackage rec {
pname = "rokuecp";
version = "0.8.4";
version = "0.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ctalkington";
repo = "python-rokuecp";
rev = version;
sha256 = "sha256-vwXBYwiDQZBxEZDwLX9if6dt7tKQQOLyKL5m0q/3eUw=";
sha256 = "sha256-Y4Ge7IOR7//MJ0w7kdOgchLWFGR1qJbY0PSpJrjucaQ=";
};
propagatedBuildInputs = [
aiohttp
cachetools
xmltodict
yarl
];