2021-03-07 04:46:28 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, nixosTests
|
2018-07-29 20:49:46 +01:00
|
|
|
|
|
|
|
# Look up dependencies of specified components in component-packages.nix
|
2019-12-20 07:25:56 +00:00
|
|
|
, extraComponents ? [ ]
|
2018-07-29 20:49:46 +01:00
|
|
|
|
|
|
|
# Additional packages to add to propagatedBuildInputs
|
2018-01-14 21:26:52 +00:00
|
|
|
, extraPackages ? ps: []
|
2018-07-29 20:49:46 +01:00
|
|
|
|
2018-08-21 01:27:55 +01:00
|
|
|
# Override Python packages using
|
|
|
|
# self: super: { pkg = super.pkg.overridePythonAttrs (oldAttrs: { ... }); }
|
|
|
|
# Applied after defaultOverrides
|
2021-02-04 14:02:14 +00:00
|
|
|
, packageOverrides ? self: super: {}
|
2018-08-21 01:27:55 +01:00
|
|
|
|
2018-07-29 20:49:46 +01:00
|
|
|
# Skip pip install of required packages on startup
|
2018-01-14 21:26:52 +00:00
|
|
|
, skipPip ? true }:
|
|
|
|
|
|
|
|
let
|
2018-08-21 01:27:55 +01:00
|
|
|
defaultOverrides = [
|
2018-06-26 21:36:14 +01:00
|
|
|
# Override the version of some packages pinned in Home Assistant's setup.py
|
2018-11-10 12:42:15 +00:00
|
|
|
|
2020-10-08 22:13:48 +01:00
|
|
|
# Pinned due to API changes in astral>=2.0, required by the sun/moon plugins
|
2020-06-20 06:04:58 +01:00
|
|
|
# https://github.com/home-assistant/core/issues/36636
|
|
|
|
(mkOverride "astral" "1.10.1"
|
|
|
|
"d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1")
|
|
|
|
|
2021-03-21 03:14:48 +00:00
|
|
|
# Pinned due to API changes in iaqualink>=2.0, remove after
|
|
|
|
# https://github.com/home-assistant/core/pull/48137 was merged
|
|
|
|
(self: super: {
|
|
|
|
iaqualink = super.iaqualink.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "flz";
|
|
|
|
repo = "iaqualink-py";
|
2021-03-22 20:14:43 +00:00
|
|
|
rev = "v${version}";
|
2021-03-21 03:14:48 +00:00
|
|
|
sha256 = "16mn6nd9x3hm6j6da99qhwbqs95hh8wx21r1h1m9csl76z77n9lh";
|
|
|
|
};
|
|
|
|
checkInputs = oldAttrs.checkInputs ++ [ python3.pkgs.asynctest ];
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
2021-02-24 19:10:59 +00:00
|
|
|
# Pinned due to bug in ring-doorbell 0.7.0
|
|
|
|
# https://github.com/tchellomello/python-ring-doorbell/issues/240
|
|
|
|
(mkOverride "ring-doorbell" "0.6.2"
|
|
|
|
"fbd537722a27b3b854c26506d894b7399bb8dc57ff36083285971227a2d46560")
|
|
|
|
|
2018-12-12 13:01:39 +00:00
|
|
|
# hass-frontend does not exist in python3.pkgs
|
2018-08-21 01:27:55 +01:00
|
|
|
(self: super: {
|
|
|
|
hass-frontend = self.callPackage ./frontend.nix { };
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
mkOverride = attrname: version: sha256:
|
|
|
|
self: super: {
|
|
|
|
${attrname} = super.${attrname}.overridePythonAttrs (oldAttrs: {
|
|
|
|
inherit version;
|
2018-05-11 18:39:37 +01:00
|
|
|
src = oldAttrs.src.override {
|
2018-08-21 01:27:55 +01:00
|
|
|
inherit version sha256;
|
2018-05-11 18:39:37 +01:00
|
|
|
};
|
|
|
|
});
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
2019-07-25 10:51:55 +01:00
|
|
|
|
2018-12-12 13:01:39 +00:00
|
|
|
py = python3.override {
|
2018-08-21 01:27:55 +01:00
|
|
|
# Put packageOverrides at the start so they are applied after defaultOverrides
|
|
|
|
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ packageOverrides ] ++ defaultOverrides);
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
|
2018-02-01 12:42:07 +00:00
|
|
|
componentPackages = import ./component-packages.nix;
|
|
|
|
|
|
|
|
availableComponents = builtins.attrNames componentPackages.components;
|
|
|
|
|
|
|
|
getPackages = component: builtins.getAttr component componentPackages.components;
|
|
|
|
|
2018-04-08 12:21:52 +01:00
|
|
|
componentBuildInputs = lib.concatMap (component: getPackages component py.pkgs) extraComponents;
|
2018-02-01 12:42:07 +00:00
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
# Ensure that we are using a consistent package set
|
|
|
|
extraBuildInputs = extraPackages py.pkgs;
|
|
|
|
|
2018-02-01 12:42:07 +00:00
|
|
|
# Don't forget to run parse-requirements.py after updating
|
2021-04-07 19:34:08 +01:00
|
|
|
hassVersion = "2021.4.0";
|
2018-02-01 12:42:07 +00:00
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
in with py.pkgs; buildPythonApplication rec {
|
|
|
|
pname = "homeassistant";
|
2018-02-01 12:42:07 +00:00
|
|
|
version = assert (componentPackages.version == hassVersion); hassVersion;
|
2018-01-14 21:26:52 +00:00
|
|
|
|
2020-10-07 19:28:25 +01:00
|
|
|
# check REQUIRED_PYTHON_VER in homeassistant/const.py
|
2021-03-03 21:21:01 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2020-02-26 15:51:25 +00:00
|
|
|
|
2021-01-06 23:20:39 +00:00
|
|
|
# don't try and fail to strip 6600+ python files, it takes minutes!
|
|
|
|
dontStrip = true;
|
|
|
|
|
2018-02-01 12:42:07 +00:00
|
|
|
inherit availableComponents;
|
2018-01-14 21:26:52 +00:00
|
|
|
|
|
|
|
# PyPI tarball is missing tests/ directory
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "home-assistant";
|
2020-05-20 22:41:42 +01:00
|
|
|
repo = "core";
|
2018-01-14 21:26:52 +00:00
|
|
|
rev = version;
|
2021-04-07 19:34:08 +01:00
|
|
|
sha256 = "1gkbkyxqsw3isdyskzi0ib07fgqvirnr20jkhrz86vl0k9ix8hwf";
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
|
2020-11-04 11:52:54 +00:00
|
|
|
# leave this in, so users don't have to constantly update their downstream patch handling
|
2021-03-07 04:46:28 +00:00
|
|
|
patches = [
|
|
|
|
];
|
2020-11-04 11:52:54 +00:00
|
|
|
|
2020-08-18 09:07:27 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
2021-04-07 19:34:08 +01:00
|
|
|
--replace "awesomeversion==21.2.3" "awesomeversion" \
|
|
|
|
--replace "bcrypt==3.1.7" "bcrypt" \
|
2021-03-03 21:21:01 +00:00
|
|
|
--replace "cryptography==3.3.2" "cryptography" \
|
2020-12-11 13:30:12 +00:00
|
|
|
--replace "pip>=8.0.3,<20.3" "pip" \
|
2021-04-07 19:34:08 +01:00
|
|
|
--replace "pytz>=2021.1" "pytz" \
|
2021-02-03 17:57:09 +00:00
|
|
|
--replace "pyyaml==5.4.1" "pyyaml" \
|
2021-04-07 19:34:08 +01:00
|
|
|
--replace "ruamel.yaml==0.15.100" "ruamel.yaml"
|
2020-10-07 19:28:25 +01:00
|
|
|
substituteInPlace tests/test_config.py --replace '"/usr"' '"/build/media"'
|
2020-08-18 09:07:27 +01:00
|
|
|
'';
|
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-02-04 16:36:21 +00:00
|
|
|
# Only packages required in setup.py + hass-frontend
|
|
|
|
aiohttp
|
|
|
|
astral
|
|
|
|
async-timeout
|
|
|
|
attrs
|
2021-02-05 13:48:53 +00:00
|
|
|
awesomeversion
|
2021-02-04 16:36:21 +00:00
|
|
|
bcrypt
|
|
|
|
certifi
|
|
|
|
ciso8601
|
|
|
|
cryptography
|
|
|
|
hass-frontend
|
|
|
|
httpx
|
|
|
|
jinja2
|
|
|
|
pip
|
|
|
|
pyjwt
|
|
|
|
python-slugify
|
|
|
|
pytz
|
|
|
|
pyyaml
|
|
|
|
requests
|
|
|
|
ruamel_yaml
|
|
|
|
voluptuous
|
|
|
|
voluptuous-serialize
|
|
|
|
yarl
|
2018-02-01 12:42:07 +00:00
|
|
|
] ++ componentBuildInputs ++ extraBuildInputs;
|
2018-01-14 21:26:52 +00:00
|
|
|
|
2021-02-06 03:47:04 +00:00
|
|
|
makeWrapperArgs = lib.optional skipPip "--add-flags --skip-pip";
|
|
|
|
|
2020-05-06 07:27:19 +01:00
|
|
|
# upstream only tests on Linux, so do we.
|
|
|
|
doCheck = stdenv.isLinux;
|
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
checkInputs = [
|
2021-02-04 16:36:21 +00:00
|
|
|
# test infrastructure
|
|
|
|
asynctest
|
|
|
|
pytest-aiohttp
|
2021-03-02 16:56:33 +00:00
|
|
|
pytest-rerunfailures
|
2021-02-04 16:36:21 +00:00
|
|
|
pytest-xdist
|
|
|
|
pytestCheckHook
|
|
|
|
requests-mock
|
|
|
|
# component dependencies
|
|
|
|
pyotp
|
2021-02-06 03:47:04 +00:00
|
|
|
respx
|
2021-02-04 16:36:21 +00:00
|
|
|
] ++ lib.concatMap (component: getPackages component py.pkgs) componentTests;
|
2019-12-20 07:25:56 +00:00
|
|
|
|
2021-02-06 03:47:04 +00:00
|
|
|
# We can reasonably test components that don't communicate with any network
|
|
|
|
# services. Before adding new components to this list make sure we have all
|
|
|
|
# its dependencies packaged and listed in ./component-packages.nix.
|
2020-10-08 00:27:42 +01:00
|
|
|
componentTests = [
|
2021-04-01 10:57:16 +01:00
|
|
|
"accuweather"
|
2021-04-01 20:16:42 +01:00
|
|
|
"airly"
|
2021-04-07 19:34:08 +01:00
|
|
|
"analytics"
|
2021-02-06 03:47:04 +00:00
|
|
|
"alert"
|
2020-10-08 00:27:42 +01:00
|
|
|
"api"
|
2021-02-06 03:47:04 +00:00
|
|
|
"auth"
|
2020-10-08 00:27:42 +01:00
|
|
|
"automation"
|
2021-04-03 14:15:49 +01:00
|
|
|
"axis"
|
2021-02-06 03:47:04 +00:00
|
|
|
"bayesian"
|
|
|
|
"binary_sensor"
|
|
|
|
"caldav"
|
|
|
|
"calendar"
|
|
|
|
"camera"
|
2021-04-07 14:30:34 +01:00
|
|
|
"cast"
|
2021-02-06 03:47:04 +00:00
|
|
|
"climate"
|
|
|
|
"cloud"
|
|
|
|
"command_line"
|
2020-10-08 00:27:42 +01:00
|
|
|
"config"
|
|
|
|
"configurator"
|
2021-02-06 03:47:04 +00:00
|
|
|
"conversation"
|
2021-02-03 17:57:09 +00:00
|
|
|
"counter"
|
2021-02-06 03:47:04 +00:00
|
|
|
"cover"
|
2021-03-22 23:12:47 +00:00
|
|
|
"deconz"
|
2020-10-08 00:27:42 +01:00
|
|
|
"default_config"
|
|
|
|
"demo"
|
2021-02-06 03:47:04 +00:00
|
|
|
"derivative"
|
|
|
|
"device_automation"
|
|
|
|
"device_sun_light_trigger"
|
|
|
|
"device_tracker"
|
2021-04-01 12:59:46 +01:00
|
|
|
"devolo_home_control"
|
2021-02-03 17:57:09 +00:00
|
|
|
"dhcp"
|
2020-10-08 00:27:42 +01:00
|
|
|
"discovery"
|
2021-02-06 03:47:04 +00:00
|
|
|
"emulated_hue"
|
|
|
|
"esphome"
|
|
|
|
"fan"
|
2021-03-03 21:21:01 +00:00
|
|
|
"faa_delays"
|
2021-02-06 03:47:04 +00:00
|
|
|
"ffmpeg"
|
|
|
|
"file"
|
|
|
|
"filesize"
|
|
|
|
"filter"
|
|
|
|
"flux"
|
|
|
|
"folder"
|
|
|
|
"folder_watcher"
|
2021-04-03 17:23:36 +01:00
|
|
|
"freebox"
|
2021-02-06 03:47:04 +00:00
|
|
|
"fritzbox"
|
|
|
|
"fritzbox_callmonitor"
|
2020-10-08 00:27:42 +01:00
|
|
|
"frontend"
|
2021-02-06 03:47:04 +00:00
|
|
|
"generic"
|
|
|
|
"generic_thermostat"
|
|
|
|
"geo_json_events"
|
|
|
|
"geo_location"
|
2020-10-08 00:27:42 +01:00
|
|
|
"group"
|
2021-02-06 03:47:04 +00:00
|
|
|
"hddtemp"
|
2020-10-08 00:27:42 +01:00
|
|
|
"history"
|
2021-02-06 03:47:04 +00:00
|
|
|
"history_stats"
|
2021-04-07 19:34:08 +01:00
|
|
|
"home_plus_control"
|
2021-04-03 14:57:40 +01:00
|
|
|
"homekit"
|
2021-03-03 21:21:01 +00:00
|
|
|
"homekit_controller"
|
2020-10-08 00:27:42 +01:00
|
|
|
"homeassistant"
|
2021-04-01 12:22:11 +01:00
|
|
|
"homematic"
|
2021-02-06 03:47:04 +00:00
|
|
|
"html5"
|
2020-10-08 00:27:42 +01:00
|
|
|
"http"
|
2021-02-04 16:36:21 +00:00
|
|
|
"hue"
|
2021-03-21 00:08:49 +00:00
|
|
|
"iaqualink"
|
2021-02-06 03:47:04 +00:00
|
|
|
"ifttt"
|
|
|
|
"image"
|
|
|
|
"image_processing"
|
|
|
|
"influxdb"
|
2020-10-08 00:27:42 +01:00
|
|
|
"input_boolean"
|
|
|
|
"input_datetime"
|
|
|
|
"input_text"
|
|
|
|
"input_number"
|
|
|
|
"input_select"
|
2021-02-06 03:47:04 +00:00
|
|
|
"intent"
|
|
|
|
"intent_script"
|
|
|
|
"ipp"
|
2021-03-03 21:21:01 +00:00
|
|
|
"kmtronic"
|
2021-02-06 03:47:04 +00:00
|
|
|
"light"
|
2021-04-07 19:34:08 +01:00
|
|
|
"litterrobot"
|
2021-02-06 03:47:04 +00:00
|
|
|
"local_file"
|
|
|
|
"local_ip"
|
|
|
|
"lock"
|
2020-10-08 00:27:42 +01:00
|
|
|
"logbook"
|
2021-02-06 03:47:04 +00:00
|
|
|
"logentries"
|
2020-10-08 00:27:42 +01:00
|
|
|
"logger"
|
2021-02-06 03:47:04 +00:00
|
|
|
"lovelace"
|
|
|
|
"manual"
|
|
|
|
"manual_mqtt"
|
2021-03-03 21:21:01 +00:00
|
|
|
"mazda"
|
2021-02-06 03:47:04 +00:00
|
|
|
"media_player"
|
2020-10-08 00:27:42 +01:00
|
|
|
"media_source"
|
2021-02-06 03:47:04 +00:00
|
|
|
"met"
|
2021-04-01 08:30:22 +01:00
|
|
|
"minecraft_server"
|
2020-10-08 00:27:42 +01:00
|
|
|
"mobile_app"
|
2021-02-06 03:47:04 +00:00
|
|
|
"modbus"
|
|
|
|
"moon"
|
|
|
|
"mqtt"
|
|
|
|
"mqtt_eventstream"
|
|
|
|
"mqtt_json"
|
|
|
|
"mqtt_room"
|
|
|
|
"mqtt_statestream"
|
2021-03-03 21:21:01 +00:00
|
|
|
"mullvad"
|
2021-02-06 03:47:04 +00:00
|
|
|
"notify"
|
2021-03-20 22:49:26 +00:00
|
|
|
"notion"
|
2021-02-06 03:47:04 +00:00
|
|
|
"number"
|
|
|
|
"ozw"
|
|
|
|
"panel_custom"
|
|
|
|
"panel_iframe"
|
|
|
|
"persistent_notification"
|
2020-10-08 00:27:42 +01:00
|
|
|
"person"
|
2021-03-03 21:21:01 +00:00
|
|
|
"plaato"
|
2021-02-06 03:47:04 +00:00
|
|
|
"prometheus"
|
|
|
|
"proximity"
|
|
|
|
"push"
|
|
|
|
"python_script"
|
|
|
|
"random"
|
|
|
|
"recorder"
|
|
|
|
"rest"
|
|
|
|
"rest_command"
|
2021-03-03 21:21:01 +00:00
|
|
|
"rituals_perfume_genie"
|
2021-02-06 03:47:04 +00:00
|
|
|
"rmvtransport"
|
|
|
|
"rss_feed_template"
|
|
|
|
"safe_mode"
|
2020-10-08 00:27:42 +01:00
|
|
|
"scene"
|
2021-04-07 19:34:08 +01:00
|
|
|
"screenlogic"
|
2020-10-08 00:27:42 +01:00
|
|
|
"script"
|
2021-02-06 03:47:04 +00:00
|
|
|
"search"
|
2020-10-08 00:27:42 +01:00
|
|
|
"shell_command"
|
2021-02-06 03:47:04 +00:00
|
|
|
"shopping_list"
|
2021-03-20 22:33:37 +00:00
|
|
|
"simplisafe"
|
2021-02-06 03:47:04 +00:00
|
|
|
"simulated"
|
2021-03-22 23:41:26 +00:00
|
|
|
"sma"
|
2021-02-06 03:47:04 +00:00
|
|
|
"sensor"
|
2021-03-03 21:21:01 +00:00
|
|
|
"smarttub"
|
2021-02-06 03:47:04 +00:00
|
|
|
"smtp"
|
2021-04-04 20:52:01 +01:00
|
|
|
"smappee"
|
2021-03-24 22:49:55 +00:00
|
|
|
"solaredge"
|
2021-03-30 13:15:14 +01:00
|
|
|
"sonos"
|
2021-04-01 14:42:31 +01:00
|
|
|
"spotify"
|
2021-02-06 03:47:04 +00:00
|
|
|
"sql"
|
2020-10-08 00:27:42 +01:00
|
|
|
"ssdp"
|
2021-02-06 03:47:04 +00:00
|
|
|
"stream"
|
2021-03-22 23:55:41 +00:00
|
|
|
"subaru"
|
2020-10-08 00:27:42 +01:00
|
|
|
"sun"
|
2021-02-06 03:47:04 +00:00
|
|
|
"switch"
|
2020-10-08 00:27:42 +01:00
|
|
|
"system_health"
|
|
|
|
"system_log"
|
|
|
|
"tag"
|
2021-02-06 03:47:04 +00:00
|
|
|
"tasmota"
|
|
|
|
"tcp"
|
|
|
|
"template"
|
|
|
|
"threshold"
|
|
|
|
"time_date"
|
2021-02-03 17:57:09 +00:00
|
|
|
"timer"
|
2021-02-06 03:47:04 +00:00
|
|
|
"tod"
|
2021-04-07 19:34:08 +01:00
|
|
|
"trace"
|
2021-02-06 03:47:04 +00:00
|
|
|
"tts"
|
|
|
|
"universal"
|
|
|
|
"updater"
|
|
|
|
"upnp"
|
|
|
|
"uptime"
|
|
|
|
"vacuum"
|
2021-04-01 09:57:50 +01:00
|
|
|
"verisure"
|
2021-02-06 03:47:04 +00:00
|
|
|
"weather"
|
2021-02-03 17:57:09 +00:00
|
|
|
"webhook"
|
2020-10-08 00:27:42 +01:00
|
|
|
"websocket_api"
|
2021-02-06 03:47:04 +00:00
|
|
|
"wled"
|
|
|
|
"workday"
|
|
|
|
"worldclock"
|
2020-10-08 00:27:42 +01:00
|
|
|
"zeroconf"
|
2021-02-06 03:47:04 +00:00
|
|
|
"zha"
|
2020-10-08 00:27:42 +01:00
|
|
|
"zone"
|
2021-02-04 16:36:21 +00:00
|
|
|
"zwave"
|
2020-10-08 00:27:42 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
pytestFlagsArray = [
|
2021-02-11 15:01:01 +00:00
|
|
|
# limit amout of runners to reduce race conditions
|
2021-03-02 16:56:33 +00:00
|
|
|
"-n auto"
|
|
|
|
# retry racy tests that end in "RuntimeError: Event loop is closed"
|
|
|
|
"--reruns 3"
|
|
|
|
"--only-rerun RuntimeError"
|
2021-02-05 16:07:53 +00:00
|
|
|
# assign tests grouped by file to workers
|
|
|
|
"--dist loadfile"
|
2021-02-06 03:47:04 +00:00
|
|
|
# tests are located in tests/
|
2020-10-08 00:27:42 +01:00
|
|
|
"tests"
|
2021-04-07 19:34:08 +01:00
|
|
|
# screenlogic/test_config_flow.py: Tries to send out UDP broadcasts
|
|
|
|
"--deselect tests/components/screenlogic/test_config_flow.py::test_form_cannot_connect"
|
2021-02-06 03:47:04 +00:00
|
|
|
# dynamically add packages required for component tests
|
2020-10-08 00:27:42 +01:00
|
|
|
] ++ map (component: "tests/components/" + component) componentTests;
|
|
|
|
|
2021-02-06 03:47:04 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
# don't bulk test all components
|
|
|
|
"tests/components"
|
|
|
|
# pyotp since v2.4.0 complains about the short mock keys, hass pins v2.3.0
|
|
|
|
"tests/auth/mfa_modules/test_notify.py"
|
|
|
|
];
|
|
|
|
|
2020-10-08 00:27:42 +01:00
|
|
|
disabledTests = [
|
2021-02-05 16:07:53 +00:00
|
|
|
# AssertionError: assert 1 == 0
|
2021-03-03 21:21:01 +00:00
|
|
|
"test_error_posted_as_event"
|
2021-02-05 16:07:53 +00:00
|
|
|
"test_merge"
|
|
|
|
# ModuleNotFoundError: No module named 'pyqwikswitch'
|
|
|
|
"test_merge_id_schema"
|
2021-01-06 18:57:47 +00:00
|
|
|
# keyring.errors.NoKeyringError: No recommended backend was available.
|
|
|
|
"test_secrets_from_unrelated_fails"
|
|
|
|
"test_secrets_credstash"
|
2021-03-03 21:21:01 +00:00
|
|
|
# generic/test_camera.py: AssertionError: 500 == 200
|
|
|
|
"test_fetching_without_verify_ssl"
|
|
|
|
"test_fetching_url_with_verify_ssl"
|
2021-04-07 19:34:08 +01:00
|
|
|
# util/test_package.py: AssertionError on package.is_installed('homeassistant>=999.999.999')
|
|
|
|
"test_check_package_version_does_not_match"
|
2020-10-08 00:27:42 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
2021-04-07 19:34:08 +01:00
|
|
|
export HOME="$TEMPDIR"
|
|
|
|
|
2020-10-01 03:07:05 +01:00
|
|
|
# the tests require the existance of a media dir
|
|
|
|
mkdir /build/media
|
2021-04-07 00:41:57 +01:00
|
|
|
|
|
|
|
# error out when component test directory is missing, otherwise hidden by xdist execution :(
|
|
|
|
for component in ${lib.concatStringsSep " " (map lib.escapeShellArg componentTests)}; do
|
|
|
|
test -d "tests/components/$component" || {
|
|
|
|
>2& echo "ERROR: Tests for component '$component' were enabled, but they do not exist!"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
done
|
2018-01-14 21:26:52 +00:00
|
|
|
'';
|
|
|
|
|
2020-05-06 07:39:44 +01:00
|
|
|
passthru = {
|
|
|
|
inherit (py.pkgs) hass-frontend;
|
2020-06-20 11:05:30 +01:00
|
|
|
tests = {
|
|
|
|
inherit (nixosTests) home-assistant;
|
|
|
|
};
|
2020-05-06 07:39:44 +01:00
|
|
|
};
|
|
|
|
|
2018-02-10 22:19:19 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://home-assistant.io/";
|
2020-10-15 12:01:10 +01:00
|
|
|
description = "Open source home automation that puts local control and privacy first";
|
2018-01-14 21:26:52 +00:00
|
|
|
license = licenses.asl20;
|
2021-04-06 00:16:25 +01:00
|
|
|
maintainers = teams.home-assistant.members;
|
2021-04-03 22:39:33 +01:00
|
|
|
platforms = platforms.linux;
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
}
|