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