R. Ryantm
2025-03-05 23:03:31 +01:00
committed by Martin Weinelt
parent 35fadddcd4
commit cec4cda45a
@@ -9,16 +9,16 @@
buildPythonPackage rec {
pname = "aiowebostv";
version = "0.6.2";
version = "0.7.3";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "aiowebostv";
tag = "v${version}";
hash = "sha256-H5ZhG69F5w1fZBepxqWGo29XnK3Tn6dgota64k2GJbw=";
hash = "sha256-ssoWWLGP+0WGGtvOB0Pr1LMzAOh3qK1PHA99D16azeI=";
};
build-system = [ setuptools ];
@@ -33,8 +33,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module to interact with LG webOS based TV devices";
homepage = "https://github.com/home-assistant-libs/aiowebostv";
changelog = "https://github.com/home-assistant-libs/aiowebostv/releases/tag/v${version}";
license = with licenses; [ asl20 ];
changelog = "https://github.com/home-assistant-libs/aiowebostv/releases/tag/${src.tag}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}