about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-11 14:09:07 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-11 15:31:50 +0100
commit1d811faf54d67e76f9ecd641ebc42c8bfff6831d (patch)
tree44d7821654202c15f2dc17f30c243b39f2674230 /pkgs/servers
parent4dae2acb8018bc5998ee2292999c847fdad403d1 (diff)
downloadnixlib-1d811faf54d67e76f9ecd641ebc42c8bfff6831d.tar
nixlib-1d811faf54d67e76f9ecd641ebc42c8bfff6831d.tar.gz
nixlib-1d811faf54d67e76f9ecd641ebc42c8bfff6831d.tar.bz2
nixlib-1d811faf54d67e76f9ecd641ebc42c8bfff6831d.tar.lz
nixlib-1d811faf54d67e76f9ecd641ebc42c8bfff6831d.tar.xz
nixlib-1d811faf54d67e76f9ecd641ebc42c8bfff6831d.tar.zst
nixlib-1d811faf54d67e76f9ecd641ebc42c8bfff6831d.zip
home-assistant: 2021.2.2 -> 2021.2.3
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/home-assistant/component-packages.nix2
-rw-r--r--pkgs/servers/home-assistant/default.nix10
2 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 2f97cb4a9684..d8bca0f55179 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
 # Do not edit!
 
 {
-  version = "2021.2.2";
+  version = "2021.2.3";
   components = {
     "abode" = ps: with ps; [ abodepy ];
     "accuweather" = ps: with ps; [ accuweather ];
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index bb697d1035ad..ae4f402947b5 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, nixosTests, lib, fetchurl, fetchFromGitHub, fetchpatch, python3, protobuf3_6
+{ stdenv, nixosTests, lib, fetchFromGitHub, python3
 
 # Look up dependencies of specified components in component-packages.nix
 , extraComponents ? [ ]
@@ -57,7 +57,7 @@ let
   extraBuildInputs = extraPackages py.pkgs;
 
   # Don't forget to run parse-requirements.py after updating
-  hassVersion = "2021.2.2";
+  hassVersion = "2021.2.3";
 
 in with py.pkgs; buildPythonApplication rec {
   pname = "homeassistant";
@@ -76,7 +76,7 @@ in with py.pkgs; buildPythonApplication rec {
     owner = "home-assistant";
     repo = "core";
     rev = version;
-    sha256 = "0y7yj3kwk2454yghslvv5s2783rch9pznhxrw4mh3plr6qzi70rp";
+    sha256 = "0s1jcd94wwvmvzq86w8s9dwfvnmjs9l661z9pc6kwgagggjjgd8c";
   };
 
   # leave this in, so users don't have to constantly update their downstream patch handling
@@ -203,6 +203,10 @@ in with py.pkgs; buildPythonApplication rec {
     "test_error_posted_as_event"
     # ssdp/test_init.py: RuntimeError: Event loop is closed
     "test_scan_match_st"
+    # sun/test_init.py: RuntimeError: Event loop is closed
+    "test_setting_rising"
+    # sun/test_trigger.py: RuntimeError Event loop is closed
+    "test_sunset_trigger"
   ];
 
   preCheck = ''