python3Packages.androidtvremote2: 0.3.0 -> 0.3.1 (#501749)

This commit is contained in:
Fabian Affolter
2026-03-20 22:08:09 +00:00
committed by GitHub
@@ -8,16 +8,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "androidtvremote2";
version = "0.3.0";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "tronikos";
repo = "androidtvremote2";
tag = "v${version}";
hash = "sha256-kpp4wLAMF5lAkQKdhFvFlu0n+TdmVbaNncv8tjUcqVs=";
tag = "v${finalAttrs.version}";
hash = "sha256-W+L1yQ7FAoKIlYtlM7gfPv8Tco/9hCDDUQQ16xg+++s=";
};
build-system = [ setuptools ];
@@ -36,8 +36,8 @@ buildPythonPackage rec {
meta = {
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/${src.tag}";
changelog = "https://github.com/tronikos/androidtvremote2/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})