python3Packages.emulated-roku: 0.3.0 -> 0.4.0 (#468476)

This commit is contained in:
dotlambda
2025-12-07 01:07:42 +00:00
committed by GitHub
@@ -8,29 +8,30 @@
buildPythonPackage rec {
pname = "emulated-roku";
version = "0.3.0";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mindigmarton";
repo = "emulated_roku";
rev = version;
hash = "sha256-7DbJl1e1ESWPCNuQX7m/ggXNDyPYZ5eNGwSz+jnxZj0=";
tag = version;
hash = "sha256-lPe0mXtl1IQx//IydnmddpV11CpOi/MKq9TUOAKuoeU=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [ aiohttp ];
dependencies = [ aiohttp ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "emulated_roku" ];
meta = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}