home-assistant-custom-components.volkswagen_we_connect_id: drop

Development on the integration has been discontinued.
This commit is contained in:
Robert Schütz
2025-12-02 09:49:42 -08:00
parent fa5cf3e5ea
commit fa1b0614f4
@@ -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 ];
};
}