From fa1b0614f482a2f0d101e51f41a94be459ff28d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 2 Dec 2025 09:49:42 -0800 Subject: [PATCH] home-assistant-custom-components.volkswagen_we_connect_id: drop Development on the integration has been discontinued. --- .../volkswagen_we_connect_id/package.nix | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 pkgs/servers/home-assistant/custom-components/volkswagen_we_connect_id/package.nix diff --git a/pkgs/servers/home-assistant/custom-components/volkswagen_we_connect_id/package.nix b/pkgs/servers/home-assistant/custom-components/volkswagen_we_connect_id/package.nix deleted file mode 100644 index 2077213c1ed3..000000000000 --- a/pkgs/servers/home-assistant/custom-components/volkswagen_we_connect_id/package.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ - ascii-magic, - buildHomeAssistantComponent, - fetchFromGitHub, - lib, - weconnect, -}: - -buildHomeAssistantComponent rec { - owner = "mitch-dc"; - domain = "volkswagen_we-connect_id"; - version = "0.2.6"; - - src = fetchFromGitHub { - inherit owner; - repo = "volkswagen_we_connect_id"; - tag = "v${version}"; - hash = "sha256-f5guxLE93QtTPV1zw1313bzF521pVr0vsUa3hzcRmJo="; - }; - - dependencies = [ - ascii-magic - weconnect - ]; - - # upstream has no tests - doCheck = false; - - meta = { - changelog = "https://github.com/mitch-dc/volkswagen_we_connect_id/releases/tag/v${version}"; - description = "Statistics from the Volkswagen ID API"; - homepage = "https://github.com/mitch-dc/volkswagen_we_connect_id"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; - }; -}