summary refs log tree commit diff
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-12-24 23:49:19 +0100
committerGitHub <noreply@github.com>2021-12-24 23:49:19 +0100
commit44a97867600d7148298e363f34cfcaee9ba486c4 (patch)
treeddbe0d019d5969839878c3442ab17fdb4adb0799 /pkgs/servers/home-assistant
parent308bc63c20e2d5317e866c18d55bbe7783bf1394 (diff)
downloadnixpkgs-44a97867600d7148298e363f34cfcaee9ba486c4.tar
nixpkgs-44a97867600d7148298e363f34cfcaee9ba486c4.tar.gz
nixpkgs-44a97867600d7148298e363f34cfcaee9ba486c4.tar.bz2
nixpkgs-44a97867600d7148298e363f34cfcaee9ba486c4.tar.lz
nixpkgs-44a97867600d7148298e363f34cfcaee9ba486c4.tar.xz
nixpkgs-44a97867600d7148298e363f34cfcaee9ba486c4.tar.zst
nixpkgs-44a97867600d7148298e363f34cfcaee9ba486c4.zip
home-assistant: override yalexs
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 3701caea508..8f309f9b6c4 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -219,6 +219,19 @@ let
       });
     })
 
+    # Remove with 2021.12.6 as the requirement will be 1.1.16 (at least)
+    (self: super: {
+      yalexs = super.yalexs.overridePythonAttrs (oldAttrs: rec {
+        version = "1.1.13";
+        src = fetchFromGitHub {
+          owner = "bdraco";
+          repo = "yalexs";
+          rev = "v${version}";
+          sha256 = "sha256-lnx8+VyDyO7Wg+QW+CC0FUg77Ndfjar6PLsDYwEpaCQ=";
+        };
+      });
+    })
+
     # home-assistant-frontend does not exist in python3.pkgs
     (self: super: {
       home-assistant-frontend = self.callPackage ./frontend.nix { };