From 7f97d166bf830eb8ad3169a3278d8f9e1fbbf06f Mon Sep 17 00:00:00 2001 From: "J.J.Barrancos" Date: Wed, 11 Oct 2017 15:15:50 +0200 Subject: [PATCH] Added dependency on pycrypto Crypto Dependency missing found on virtualenv install. Added to dependecy rainbird.py --- homeassistant/components/switch/rainbird.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/switch/rainbird.py b/homeassistant/components/switch/rainbird.py index 9678babaea5..5ec5608830b 100644 --- a/homeassistant/components/switch/rainbird.py +++ b/homeassistant/components/switch/rainbird.py @@ -16,7 +16,7 @@ from homeassistant.const import (CONF_PLATFORM, CONF_SWITCHES, CONF_ZONE, from homeassistant.helpers import config_validation as cv from homeassistant.exceptions import PlatformNotReady -REQUIREMENTS = ['pyrainbird==0.1.0'] +REQUIREMENTS = ['pyrainbird==0.1.0','pycrypto>=2.6.0'] DOMAIN = 'rainbird' _LOGGER = logging.getLogger(__name__)