depot/pkgs/servers/home-assistant/custom-components/volkswagencarnet/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

38 lines
952 B
Nix

{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
volkswagencarnet,
pytest-homeassistant-custom-component,
pytestCheckHook,
}:
buildHomeAssistantComponent rec {
owner = "robinostlund";
domain = "volkswagencarnet";
version = "5.0.3";
src = fetchFromGitHub {
owner = "robinostlund";
repo = "homeassistant-volkswagencarnet";
rev = "refs/tags/v${version}";
hash = "sha256-3wykS2TYjr9hoQSPc1F3m5aDiLW1tzvQfjfjnr4N2Y0=";
};
dependencies = [ volkswagencarnet ];
nativeCheckInputs = [
pytest-homeassistant-custom-component
pytestCheckHook
];
# https://github.com/robinostlund/homeassistant-volkswagencarnet/issues/651
doCheck = false;
meta = {
description = "Volkswagen Connect component for Home Assistant";
homepage = "https://github.com/robinostlund/homeassistant-volkswagencarnet";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ dotlambda ];
};
}