python3Packages.emulated-roku: init at 0.2.1

This commit is contained in:
Robert Schütz 2021-06-18 23:43:59 +02:00
parent e914a9aeb2
commit bf6d5f3d0f
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, aiohttp
}:
buildPythonPackage rec {
pname = "emulated-roku";
version = "0.2.1";
src = fetchFromGitHub {
owner = "mindigmarton";
repo = "emulated_roku";
rev = version;
sha256 = "02cbg5wrph19p6x44jlw6cn3jli0kwbgfh6klb3c4k5jfrkhgghw";
};
propagatedBuildInputs = [
aiohttp
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "emulated_roku" ];
meta = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -2265,6 +2265,8 @@ in {
emoji = callPackage ../development/python-modules/emoji { };
emulated-roku = callPackage ../development/python-modules/emulated-roku { };
enaml = callPackage ../development/python-modules/enaml { };
enamlx = callPackage ../development/python-modules/enamlx { };