home-assistant-custom-components.oref_alert: init at 2.20.1 (#409814)

authored by Ilan Joselevich and committed by GitHub 85d1fb67 c18ed752

+40
+40
pkgs/servers/home-assistant/custom-components/oref_alert/package.nix
···
··· 1 + { 2 + lib, 3 + buildHomeAssistantComponent, 4 + fetchFromGitHub, 5 + shapely, 6 + pytestCheckHook, 7 + pytest-homeassistant-custom-component, 8 + pytest-freezer, 9 + }: 10 + 11 + buildHomeAssistantComponent rec { 12 + owner = "amitfin"; 13 + domain = "oref_alert"; 14 + version = "2.20.1"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "amitfin"; 18 + repo = "oref_alert"; 19 + tag = "v${version}"; 20 + hash = "sha256-EsDGH7/newjHRYu4Lr5UkJ3qaaNupqlhe5CdffEpIVg="; 21 + }; 22 + 23 + dependencies = [ 24 + shapely 25 + ]; 26 + 27 + nativeCheckInputs = [ 28 + pytestCheckHook 29 + pytest-homeassistant-custom-component 30 + pytest-freezer 31 + ]; 32 + 33 + meta = { 34 + changelog = "https://github.com/amitfin/oref_alert/releases/tag/v${version}"; 35 + description = "Israeli Oref Alerts"; 36 + homepage = "https://github.com/amitfin/oref_alert"; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ kranzes ]; 39 + }; 40 + }