From ce98521e890de9ddfa294dfd0102f6b9814cdcbc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 5 Nov 2025 20:40:24 +0100 Subject: [PATCH] python313Packages.androidtvremote2: modernize --- pkgs/development/python-modules/androidtvremote2/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/androidtvremote2/default.nix b/pkgs/development/python-modules/androidtvremote2/default.nix index 197d37952e75..dc2828768c4f 100644 --- a/pkgs/development/python-modules/androidtvremote2/default.nix +++ b/pkgs/development/python-modules/androidtvremote2/default.nix @@ -5,7 +5,6 @@ cryptography, fetchFromGitHub, protobuf, - pythonOlder, setuptools, }: @@ -14,8 +13,6 @@ buildPythonPackage rec { version = "0.3.0"; pyproject = true; - disabled = pythonOlder "3.10"; - src = fetchFromGitHub { owner = "tronikos"; repo = "androidtvremote2"; @@ -39,7 +36,7 @@ buildPythonPackage rec { meta = with lib; { description = "Library to interact with the Android TV Remote protocol v2"; homepage = "https://github.com/tronikos/androidtvremote2"; - changelog = "https://github.com/tronikos/androidtvremote2/releases/tag/v${version}"; + changelog = "https://github.com/tronikos/androidtvremote2/releases/tag/${src.tag}"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; };