about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2024-05-17 13:57:22 +0200
committerGitHub <noreply@github.com>2024-05-17 13:57:22 +0200
commitf078d182f92d734d1db81ad5f61ba3a33f6c9217 (patch)
tree2c05215d0855b41eb9c4e7373ee3c8dc92f849cb /pkgs
parentf69f80004cda24338535641bc5286dd0e49a3d60 (diff)
parent671b0e58eb7ff4fd53a67042949160abe674c461 (diff)
Merge pull request #312428 from fabaff/home-assistant-pin-plugwise
home-assistant: pin plugwise at 0.37.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/home-assistant/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 721ce0e19e01e..f35972e1b615a 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -289,6 +289,17 @@ let
         doCheck = false; # no tests
       });
 
+      # Can probably be removed with 2024.6.0
+      plugwise = super.plugwise.overridePythonAttrs rec {
+        version = "0.37.3";
+        src = fetchFromGitHub {
+          owner = "plugwise";
+          repo = "python-plugwise";
+          rev = "refs/tags/v${version}";
+          hash = "sha256-aQz0p+DNi1XVoFwdFjc3RjpHqA2kGf4pU1QS6m271gU=";
+        };
+      };
+
       # Pinned due to API changes in 0.1.0
       poolsense = super.poolsense.overridePythonAttrs (oldAttrs: rec {
         version = "0.0.8";