blob: 22933e51d6b251d17235dbde31b39849d54a7659 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
}:
buildPythonPackage rec {
pname = "emulated-roku";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mindigmarton";
repo = "emulated_roku";
tag = version;
hash = "sha256-lPe0mXtl1IQx//IydnmddpV11CpOi/MKq9TUOAKuoeU=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "emulated_roku" ];
meta = {
changelog = "https://github.com/martonperei/emulated_roku/releases/tag/${src.tag}";
description = "Library to emulate a roku server to serve as a proxy for remotes such as Harmony";
homepage = "https://github.com/mindigmarton/emulated_roku";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|