From 14a605e0b91e32541bfdc6d37f022a013e8f011d Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 4 Jan 2025 00:17:54 +0100 Subject: [PATCH] home-assistant-custom-components.mass: remove This component is now integrated into home-assistant. https://www.home-assistant.io/integrations/music_assistant/ --- .../custom-components/mass/package.nix | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 pkgs/servers/home-assistant/custom-components/mass/package.nix diff --git a/pkgs/servers/home-assistant/custom-components/mass/package.nix b/pkgs/servers/home-assistant/custom-components/mass/package.nix deleted file mode 100644 index 7ea860769956..000000000000 --- a/pkgs/servers/home-assistant/custom-components/mass/package.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ - lib, - buildHomeAssistantComponent, - fetchFromGitHub, - toPythonModule, - async-timeout, - music-assistant, - pytestCheckHook, - pytest-asyncio, - pytest-cov-stub, - pytest-homeassistant-custom-component, -}: - -buildHomeAssistantComponent rec { - owner = "music-assistant"; - domain = "mass"; - version = "2024.9.1"; - - src = fetchFromGitHub { - owner = "music-assistant"; - repo = "hass-music-assistant"; - rev = version; - hash = "sha256-8YZ77SYv8hDsbKUjxPZnuAycLE8RkIbAq3HXk+OyAmM="; - }; - - dependencies = [ - async-timeout - (toPythonModule music-assistant) - ]; - - dontCheckManifest = true; # expects music-assistant 2.0.6, we have 2.0.7 - - nativeCheckInputs = [ - pytestCheckHook - pytest-asyncio - pytest-cov-stub - pytest-homeassistant-custom-component - ]; - - meta = with lib; { - description = "Turn your Home Assistant instance into a jukebox, hassle free streaming of your favorite media to Home Assistant media players"; - homepage = "https://github.com/music-assistant/hass-music-assistant"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; - }; -}