From a9b96bc29e09126a2010eac26bf3ff9ef09aa985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 6 Dec 2025 09:18:00 -0800 Subject: [PATCH] python3Packages.emulated-roku: 0.3.0 -> 0.4.0 Diff: https://github.com/mindigmarton/emulated_roku/compare/0.3.0...0.4.0 Changelog: https://github.com/martonperei/emulated_roku/releases/tag/0.4.0 --- .../python-modules/emulated-roku/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/emulated-roku/default.nix b/pkgs/development/python-modules/emulated-roku/default.nix index 1e29bead57fb..22933e51d6b2 100644 --- a/pkgs/development/python-modules/emulated-roku/default.nix +++ b/pkgs/development/python-modules/emulated-roku/default.nix @@ -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 ]; }; }