Ilan Joselevich 2025-06-03 04:34:01 +07:00 committed by GitHub
parent b9570defed
commit 574dd88989
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,7 @@
lib, lib,
buildHomeAssistantComponent, buildHomeAssistantComponent,
fetchFromGitHub, fetchFromGitHub,
aiofiles,
shapely, shapely,
pytestCheckHook, pytestCheckHook,
pytest-homeassistant-custom-component, pytest-homeassistant-custom-component,
@ -11,16 +12,17 @@
buildHomeAssistantComponent rec { buildHomeAssistantComponent rec {
owner = "amitfin"; owner = "amitfin";
domain = "oref_alert"; domain = "oref_alert";
version = "2.20.1"; version = "2.21.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "amitfin"; owner = "amitfin";
repo = "oref_alert"; repo = "oref_alert";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-EsDGH7/newjHRYu4Lr5UkJ3qaaNupqlhe5CdffEpIVg="; hash = "sha256-ov/smP7rflRfQMqYduTxDAYj5xQkpZJSzIQZrP0YADQ=";
}; };
dependencies = [ dependencies = [
aiofiles
shapely shapely
]; ];