9 buildPythonPackage rec {
10 pname = "emulated-roku";
14 src = fetchFromGitHub {
15 owner = "mindigmarton";
16 repo = "emulated_roku";
18 hash = "sha256-7DbJl1e1ESWPCNuQX7m/ggXNDyPYZ5eNGwSz+jnxZj0=";
21 nativeBuildInputs = [ setuptools ];
23 propagatedBuildInputs = [ aiohttp ];
25 # no tests implemented
28 pythonImportsCheck = [ "emulated_roku" ];
31 description = "Library to emulate a roku server to serve as a proxy for remotes such as Harmony";
32 homepage = "https://github.com/mindigmarton/emulated_roku";
33 license = licenses.mit;
34 maintainers = with maintainers; [ dotlambda ];