2021-02-11 13:09:07 +00:00
|
|
|
{ stdenv, nixosTests, lib, fetchFromGitHub, python3
|
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")
|
|
|
|
|
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-02-11 13:09:07 +00:00
|
|
|
hassVersion = "2021.2.3";
|
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
|
|
|
|
disabled = pythonOlder "3.7.1";
|
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-02-11 13:09:07 +00:00
|
|
|
sha256 = "0s1jcd94wwvmvzq86w8s9dwfvnmjs9l661z9pc6kwgagggjjgd8c";
|
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
|
|
|
|
patches = [];
|
|
|
|
|
2020-08-18 09:07:27 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
2020-12-11 13:30:12 +00:00
|
|
|
--replace "attrs==19.3.0" "attrs>=19.3.0" \
|
2020-10-08 22:13:48 +01:00
|
|
|
--replace "bcrypt==3.1.7" "bcrypt>=3.1.7" \
|
2021-02-25 08:33:40 +00:00
|
|
|
--replace "awesomeversion==21.2.2" "awesomeversion>=21.2.2" \
|
2020-11-04 11:52:54 +00:00
|
|
|
--replace "cryptography==3.2" "cryptography" \
|
2021-02-28 22:44:02 +00:00
|
|
|
--replace "httpx==0.16.1" "httpx>=0.16.1" \
|
2020-12-11 13:30:12 +00:00
|
|
|
--replace "pip>=8.0.3,<20.3" "pip" \
|
2021-02-03 17:57:09 +00:00
|
|
|
--replace "pytz>=2020.5" "pytz>=2020.4" \
|
|
|
|
--replace "pyyaml==5.4.1" "pyyaml" \
|
|
|
|
--replace "requests==2.25.1" "requests>=2.25.0" \
|
2020-10-08 22:13:48 +01:00
|
|
|
--replace "ruamel.yaml==0.15.100" "ruamel.yaml>=0.15.100"
|
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
|
|
|
|
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
|
|
|
|
pytest-xdist
|
|
|
|
pytestCheckHook
|
|
|
|
requests-mock
|
|
|
|
# component dependencies
|
|
|
|
pyotp
|
|
|
|
] ++ lib.concatMap (component: getPackages component py.pkgs) componentTests;
|
2019-12-20 07:25:56 +00:00
|
|
|
|
2020-10-08 00:27:42 +01:00
|
|
|
# We cannot test all components, since they'd introduce lots of dependencies, some of which are unpackaged,
|
|
|
|
# but we should test very common stuff, like what's in `default_config`.
|
2021-02-03 17:57:09 +00:00
|
|
|
# https://github.com/home-assistant/core/commits/dev/homeassistant/components/default_config/manifest.json
|
2020-10-08 00:27:42 +01:00
|
|
|
componentTests = [
|
|
|
|
"api"
|
|
|
|
"automation"
|
|
|
|
"config"
|
|
|
|
"configurator"
|
2021-02-03 17:57:09 +00:00
|
|
|
"counter"
|
2020-10-08 00:27:42 +01:00
|
|
|
"default_config"
|
|
|
|
"demo"
|
2021-02-03 17:57:09 +00:00
|
|
|
"dhcp"
|
2020-10-08 00:27:42 +01:00
|
|
|
"discovery"
|
|
|
|
"frontend"
|
|
|
|
"group"
|
|
|
|
"history"
|
|
|
|
"homeassistant"
|
|
|
|
"http"
|
2021-02-04 16:36:21 +00:00
|
|
|
"hue"
|
2020-10-08 00:27:42 +01:00
|
|
|
"input_boolean"
|
|
|
|
"input_datetime"
|
|
|
|
"input_text"
|
|
|
|
"input_number"
|
|
|
|
"input_select"
|
|
|
|
"logbook"
|
|
|
|
"logger"
|
|
|
|
"media_source"
|
|
|
|
"mobile_app"
|
|
|
|
"person"
|
|
|
|
"scene"
|
|
|
|
"script"
|
|
|
|
"shell_command"
|
|
|
|
"ssdp"
|
|
|
|
"sun"
|
|
|
|
"system_health"
|
|
|
|
"system_log"
|
|
|
|
"tag"
|
2021-02-03 17:57:09 +00:00
|
|
|
"timer"
|
|
|
|
"webhook"
|
2020-10-08 00:27:42 +01:00
|
|
|
"websocket_api"
|
|
|
|
"zeroconf"
|
|
|
|
"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
|
|
|
|
"-n 2"
|
2021-02-05 16:07:53 +00:00
|
|
|
# assign tests grouped by file to workers
|
|
|
|
"--dist loadfile"
|
2020-10-08 00:27:42 +01:00
|
|
|
# don't bulk test all components
|
|
|
|
"--ignore tests/components"
|
|
|
|
# pyotp since v2.4.0 complains about the short mock keys, hass pins v2.3.0
|
|
|
|
"--ignore tests/auth/mfa_modules/test_notify.py"
|
|
|
|
"tests"
|
|
|
|
] ++ map (component: "tests/components/" + component) componentTests;
|
|
|
|
|
|
|
|
disabledTests = [
|
2021-02-05 16:07:53 +00:00
|
|
|
# AssertionError: assert 1 == 0
|
|
|
|
"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"
|
2020-10-08 00:27:42 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
2020-10-01 03:07:05 +01:00
|
|
|
# the tests require the existance of a media dir
|
|
|
|
mkdir /build/media
|
2018-01-14 21:26:52 +00:00
|
|
|
'';
|
|
|
|
|
2018-02-10 22:19:19 +00:00
|
|
|
makeWrapperArgs = lib.optional skipPip "--add-flags --skip-pip";
|
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;
|
2020-06-23 09:27:24 +01:00
|
|
|
maintainers = with maintainers; [ dotlambda globin mic92 hexa ];
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
}
|