From 5ab545c33a671f7988e9c0539c000e98d386c773 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 23 Aug 2024 04:33:37 +0200 Subject: [PATCH 1/2] home-assistant-custom-components.mass: 2024.6.2 -> 2024.8.1 https://github.com/music-assistant/hass-music-assistant/compare/2024.6.2...2024.8.1 --- .../servers/home-assistant/custom-components/mass/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-components/mass/default.nix b/pkgs/servers/home-assistant/custom-components/mass/default.nix index 08382d024f8e..6b00ced098b4 100644 --- a/pkgs/servers/home-assistant/custom-components/mass/default.nix +++ b/pkgs/servers/home-assistant/custom-components/mass/default.nix @@ -12,13 +12,13 @@ buildHomeAssistantComponent rec { owner = "music-assistant"; domain = "mass"; - version = "2024.6.2"; + version = "2024.8.1"; src = fetchFromGitHub { owner = "music-assistant"; repo = "hass-music-assistant"; rev = version; - hash = "sha256-Wvc+vUYkUJmS4U34Sh/sDCVXmQA0AtEqIT8MNXd++3M="; + hash = "sha256-lrJx2wsVY0aJ+iVBxbZryC6QRvaXdxjBsTma/4ptl4o="; }; postPatch = '' From 557958e097fd63ed18d6bffa0f95c8e437f2be42 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 23 Aug 2024 04:38:32 +0200 Subject: [PATCH 2/2] home-assistant.python.pkgs.pytest-homeassistant-custom-component: 0.13.147 -> 0.13.154 https://github.com/MatthewFlamm/pytest-homeassistant-custom-component/blob/refs/tags/0.13.154/CHANGELOG.md --- .../pytest-homeassistant-custom-component.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix b/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix index c3c9deec7f22..286e7dade010 100644 --- a/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix +++ b/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix @@ -11,13 +11,14 @@ pytest-asyncio, pytest-socket, requests-mock, + respx, syrupy, pytestCheckHook, }: buildPythonPackage rec { pname = "pytest-homeassistant-custom-component"; - version = "0.13.147"; + version = "0.13.154"; pyproject = true; disabled = pythonOlder "3.12"; @@ -26,7 +27,7 @@ buildPythonPackage rec { owner = "MatthewFlamm"; repo = "pytest-homeassistant-custom-component"; rev = "refs/tags/${version}"; - hash = "sha256-FivgP0tKmu9QKPSVU9c/3SNduyKoSeAquHysdHSs11E="; + hash = "sha256-BmZ12amsa4BzesaxGMdQ2VY2FM5ZfgU32plAl4mG+tE="; }; build-system = [ setuptools ]; @@ -41,6 +42,7 @@ buildPythonPackage rec { pytest-asyncio pytest-socket requests-mock + respx syrupy ];