Files
nixpkgs/pkgs/development/python-modules/emulated-roku/default.nix
T
2026-02-18 21:03:47 +00:00

38 lines
860 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
}:
buildPythonPackage rec {
pname = "emulated-roku";
version = "0.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "mindigmarton";
repo = "emulated_roku";
tag = version;
hash = "sha256-KwDEajkrEEgobORetM/rROMDLZvw9AJmmr1jmXAJJbk=";
};
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 ];
};
}