Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 41 lines 741 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, aiohttp 5, xmltodict 6, yarl 7, aresponses 8, pytest-asyncio 9, pytestCheckHook 10}: 11 12buildPythonPackage rec { 13 pname = "rokuecp"; 14 version = "0.8.1"; 15 16 src = fetchFromGitHub { 17 owner = "ctalkington"; 18 repo = "python-rokuecp"; 19 rev = version; 20 sha256 = "02mbmwljcvqj3ksj2irdm8849lcxzwa6fycgjqb0i75cgidxpans"; 21 }; 22 23 propagatedBuildInputs = [ 24 aiohttp 25 xmltodict 26 yarl 27 ]; 28 29 checkInputs = [ 30 aresponses 31 pytestCheckHook 32 pytest-asyncio 33 ]; 34 35 meta = with lib; { 36 description = "Asynchronous Python client for Roku (ECP)"; 37 homepage = "https://github.com/ctalkington/python-rokuecp"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ ]; 40 }; 41}