summary refs log tree commit diff
path: root/pkgs
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
parentfb997de4bb3d7cf7681cfd03b58e07652d7ac253 (diff)
downloadnixpkgs-f86a943450fd57496f266fafeb0536055da7806c.tar
nixpkgs-f86a943450fd57496f266fafeb0536055da7806c.tar.gz
nixpkgs-f86a943450fd57496f266fafeb0536055da7806c.tar.bz2
nixpkgs-f86a943450fd57496f266fafeb0536055da7806c.tar.lz
nixpkgs-f86a943450fd57496f266fafeb0536055da7806c.tar.xz
nixpkgs-f86a943450fd57496f266fafeb0536055da7806c.tar.zst
nixpkgs-f86a943450fd57496f266fafeb0536055da7806c.zip
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')
-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 fb2909c3253..8e5435350ee 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"