Commit fa1b0614 authored by Robert Schütz's avatar Robert Schütz
Browse files

home-assistant-custom-components.volkswagen_we_connect_id: drop

Development on the integration has been discontinued.
parent fa5cf3e5
Loading
Loading
Loading
Loading
+0 −36
Original line number Diff line number Diff line
{
  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 ];
  };
}