summary refs log tree commit diff
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-08-08 22:30:54 +0200
committerJon <jonringer@users.noreply.github.com>2020-08-08 13:39:41 -0700
commitb01106127c0f069628e957dfcf6c614dc43f9a01 (patch)
tree28af964376eff9fc3e9377e3ef4246703c272dd8 /pkgs/servers/home-assistant
parent069d28d326f5d6566357bbf2abbd0489c8047972 (diff)
downloadnixpkgs-b01106127c0f069628e957dfcf6c614dc43f9a01.tar
nixpkgs-b01106127c0f069628e957dfcf6c614dc43f9a01.tar.gz
nixpkgs-b01106127c0f069628e957dfcf6c614dc43f9a01.tar.bz2
nixpkgs-b01106127c0f069628e957dfcf6c614dc43f9a01.tar.lz
nixpkgs-b01106127c0f069628e957dfcf6c614dc43f9a01.tar.xz
nixpkgs-b01106127c0f069628e957dfcf6c614dc43f9a01.tar.zst
nixpkgs-b01106127c0f069628e957dfcf6c614dc43f9a01.zip
home-assistant: regenerate component packages
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/component-packages.nix2
-rw-r--r--pkgs/servers/home-assistant/test-timeout.patch13
2 files changed, 14 insertions, 1 deletions
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 59fb12e7dd1..0a1178f0c9f 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -861,7 +861,7 @@
     "uscis" = ps: with ps; [ ]; # missing inputs: uscisstatus
     "usgs_earthquakes_feed" = ps: with ps; [ ]; # missing inputs: geojson_client
     "utility_meter" = ps: with ps; [ ];
-    "uvc" = ps: with ps; [ ]; # missing inputs: uvcclient
+    "uvc" = ps: with ps; [ uvcclient];
     "vacuum" = ps: with ps; [ ];
     "vallox" = ps: with ps; [ ]; # missing inputs: vallox-websocket-api
     "vasttrafik" = ps: with ps; [ ]; # missing inputs: vtjp
diff --git a/pkgs/servers/home-assistant/test-timeout.patch b/pkgs/servers/home-assistant/test-timeout.patch
new file mode 100644
index 00000000000..01b0edae1d7
--- /dev/null
+++ b/pkgs/servers/home-assistant/test-timeout.patch
@@ -0,0 +1,13 @@
+diff --git a/tests/test_core.py b/tests/test_core.py
+index a63f42af61..04b333868b 100644
+--- a/tests/test_core.py
++++ b/tests/test_core.py
+@@ -1432,7 +1432,7 @@ async def test_chained_logging_hits_log_timeout(hass, caplog):
+     async def _task_chain_2():
+         nonlocal created
+         created += 1
+-        if created > 10:
++        if created > 1000:
+             return
+         hass.async_create_task(_task_chain_1())
+