From 3379e44a0be93db64da811e88debd7c0261881ed Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 11 Dec 2022 09:45:20 +0100 Subject: [PATCH] python310Packages.home-assistant-bluetooth: 1.8.1 -> 1.9.0 Diff: https://github.com/home-assistant-libs/home-assistant-bluetooth/compare/refs/tags/v1.8.1...v1.9.0 Changelog: https://github.com/home-assistant-libs/home-assistant-bluetooth/blob/v1.9.0/CHANGELOG.md --- .../python-modules/home-assistant-bluetooth/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/home-assistant-bluetooth/default.nix b/pkgs/development/python-modules/home-assistant-bluetooth/default.nix index 68261007b7c5..cc953e609c79 100644 --- a/pkgs/development/python-modules/home-assistant-bluetooth/default.nix +++ b/pkgs/development/python-modules/home-assistant-bluetooth/default.nix @@ -11,15 +11,16 @@ buildPythonPackage rec { pname = "home-assistant-bluetooth"; - version = "1.8.1"; + version = "1.9.0"; format = "pyproject"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-oOrsZmAXLYsJ19DrQ70O0RpeSz8Jn8oD41Tsc5DVUng="; + hash = "sha256-/ne2pnSmeHuwlGCrMC0x/yNDCvB/P4SqmK/wwcmHlJQ="; }; postPatch = '' @@ -47,7 +48,7 @@ buildPythonPackage rec { meta = with lib; { description = "Basic bluetooth models used by Home Assistant"; - changelog = "https://github.com/home-assistant-libs/home-assistant-bluetooth/blob/main/CHANGELOG.md"; + changelog = "https://github.com/home-assistant-libs/home-assistant-bluetooth/blob/v${version}/CHANGELOG.md"; homepage = "https://github.com/home-assistant-libs/home-assistant-bluetooth"; license = licenses.asl20; maintainers = teams.home-assistant.members;