summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2020-11-17 02:14:08 +0100
committerPierre Bourdon <delroth@gmail.com>2020-11-17 02:14:08 +0100
commitf86a943450fd57496f266fafeb0536055da7806c (patch)
tree673859cdabd320c5df1f983622b31c886a3d9948 /pkgs/servers/home-assistant
parentfb997de4bb3d7cf7681cfd03b58e07652d7ac253 (diff)
home-assistant: loosen aiohttp version pin to unbreak build
nixpkgs's aiohttp is currently 3.6.3, which is API compatible with 3.6.2 required by home-assistant.
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index fb2909c32538..8e5435350eee 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -91,6 +91,7 @@ in with py.pkgs; buildPythonApplication rec {
postPatch = ''
substituteInPlace setup.py \
+ --replace "aiohttp==3.6.2" "aiohttp>=3.6.2" \
--replace "bcrypt==3.1.7" "bcrypt>=3.1.7" \
--replace "cryptography==3.2" "cryptography" \
--replace "ruamel.yaml==0.15.100" "ruamel.yaml>=0.15.100"