summary refs log tree commit diff
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2019-09-14 15:23:26 +0200
committerPierre Bourdon <delroth@gmail.com>2019-09-14 15:23:26 +0200
commit6a0c11b93118702cee109b2c5704bbba00a734ec (patch)
tree686874c555f84b5a7b82c88d0b31d505325a9be0 /pkgs/servers/home-assistant
parent87b22ea005cbc851ed58c3ef501dc0d746b891d0 (diff)
downloadnixpkgs-6a0c11b93118702cee109b2c5704bbba00a734ec.tar
nixpkgs-6a0c11b93118702cee109b2c5704bbba00a734ec.tar.gz
nixpkgs-6a0c11b93118702cee109b2c5704bbba00a734ec.tar.bz2
nixpkgs-6a0c11b93118702cee109b2c5704bbba00a734ec.tar.lz
nixpkgs-6a0c11b93118702cee109b2c5704bbba00a734ec.tar.xz
nixpkgs-6a0c11b93118702cee109b2c5704bbba00a734ec.tar.zst
nixpkgs-6a0c11b93118702cee109b2c5704bbba00a734ec.zip
home-assistant: add missing setuptools dependency
Fixes currently broken nixos hass test: https://hydra.nixos.org/build/100923199
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 43633b07818..5f7ef11246e 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -124,7 +124,7 @@ in with py.pkgs; buildPythonApplication rec {
     # From setup.py
     aiohttp astral async-timeout attrs bcrypt certifi importlib-metadata jinja2
     pyjwt cryptography pip python-slugify pytz pyyaml requests ruamel_yaml
-    voluptuous voluptuous-serialize
+    setuptools voluptuous voluptuous-serialize
     # From http, frontend and recorder components and auth.mfa_modules.totp
     sqlalchemy aiohttp-cors hass-frontend pyotp pyqrcode
   ] ++ componentBuildInputs ++ extraBuildInputs;