1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, aiohttp
5}:
6
7buildPythonPackage rec {
8 pname = "emulated-roku";
9 version = "0.2.1";
10
11 src = fetchFromGitHub {
12 owner = "mindigmarton";
13 repo = "emulated_roku";
14 rev = version;
15 sha256 = "02cbg5wrph19p6x44jlw6cn3jli0kwbgfh6klb3c4k5jfrkhgghw";
16 };
17
18 propagatedBuildInputs = [
19 aiohttp
20 ];
21
22 # no tests implemented
23 doCheck = false;
24
25 pythonImportsCheck = [ "emulated_roku" ];
26
27 meta = with lib; {
28 description = "Library to emulate a roku server to serve as a proxy for remotes such as Harmony";
29 homepage = "https://github.com/mindigmarton/emulated_roku";
30 license = licenses.mit;
31 maintainers = with maintainers; [ dotlambda ];
32 };
33}