Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
zeroconf,
|
|
pytestCheckHook,
|
|
home-assistant,
|
|
|
|
}:
|
|
buildHomeAssistantComponent rec {
|
|
owner = "AlexxIT";
|
|
domain = "yandex_station";
|
|
version = "3.20.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AlexxIT";
|
|
repo = "YandexStation";
|
|
tag = "v${version}";
|
|
hash = "sha256-AP0GAJrGZq2z0HlsARfhVZiv7yaeOKg05GjV95ljVdU=";
|
|
};
|
|
|
|
dependencies = [
|
|
zeroconf
|
|
];
|
|
|
|
disabledTests = [
|
|
# 'µg/m³' vs 'μg/m³'
|
|
"test_sensor_qingping"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# this test seems to be broken
|
|
"tests/test_local.py::test_track"
|
|
];
|
|
nativeCheckInputs = [
|
|
home-assistant
|
|
pytestCheckHook
|
|
]
|
|
++ (home-assistant.getPackages "stream" home-assistant.python.pkgs);
|
|
|
|
meta = {
|
|
changelog = "https://github.com/AlexxIT/YandexStation/releases/tag/${src.tag}";
|
|
description = "Controlling Yandex.Station and other smart home devices with Alice from Home Assistant";
|
|
homepage = "https://github.com/AlexxIT/YandexStation";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ferrine ];
|
|
};
|
|
}
|