2020-05-06 06:27:19 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchFromGitHub, fetchpatch, python3, protobuf3_6
|
2018-07-29 19:49:46 +00:00
|
|
|
|
|
|
|
# Look up dependencies of specified components in component-packages.nix
|
2019-12-20 07:25:56 +00:00
|
|
|
, extraComponents ? [ ]
|
2018-07-29 19:49:46 +00:00
|
|
|
|
|
|
|
# Additional packages to add to propagatedBuildInputs
|
2018-01-14 21:26:52 +00:00
|
|
|
, extraPackages ? ps: []
|
2018-07-29 19:49:46 +00:00
|
|
|
|
2018-08-21 00:27:55 +00:00
|
|
|
# Override Python packages using
|
|
|
|
# self: super: { pkg = super.pkg.overridePythonAttrs (oldAttrs: { ... }); }
|
|
|
|
# Applied after defaultOverrides
|
2019-10-22 19:36:09 +00:00
|
|
|
, packageOverrides ? self: super: {
|
|
|
|
# TODO: Remove this override after updating to cryptography 2.8:
|
2019-10-29 13:44:21 +00:00
|
|
|
|
2019-10-22 19:36:09 +00:00
|
|
|
}
|
2018-08-21 00:27:55 +00:00
|
|
|
|
2018-07-29 19:49:46 +00:00
|
|
|
# Skip pip install of required packages on startup
|
2018-01-14 21:26:52 +00:00
|
|
|
, skipPip ? true }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2018-08-21 00:27:55 +00:00
|
|
|
defaultOverrides = [
|
2018-06-26 20:36:14 +00:00
|
|
|
# Override the version of some packages pinned in Home Assistant's setup.py
|
2018-11-10 12:42:15 +00:00
|
|
|
|
2018-08-21 00:27:55 +00:00
|
|
|
# used by check_config script
|
|
|
|
# can be unpinned once https://github.com/home-assistant/home-assistant/issues/11917 is resolved
|
2019-01-11 22:40:58 +00:00
|
|
|
(mkOverride "colorlog" "4.0.2"
|
|
|
|
"3cf31b25cbc8f86ec01fef582ef3b840950dea414084ed19ab922c8b493f9b42")
|
2018-08-21 00:27:55 +00:00
|
|
|
|
2019-04-22 21:35:37 +00:00
|
|
|
# required by aioesphomeapi
|
|
|
|
(self: super: {
|
|
|
|
protobuf = super.protobuf.override {
|
|
|
|
protobuf = protobuf3_6;
|
|
|
|
};
|
|
|
|
})
|
|
|
|
|
2018-12-12 13:01:39 +00:00
|
|
|
# hass-frontend does not exist in python3.pkgs
|
2018-08-21 00:27:55 +00: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 17:39:37 +00:00
|
|
|
src = oldAttrs.src.override {
|
2018-08-21 00:27:55 +00:00
|
|
|
inherit version sha256;
|
2018-05-11 17:39:37 +00:00
|
|
|
};
|
|
|
|
});
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
2019-07-25 09:51:55 +00:00
|
|
|
|
2018-12-12 13:01:39 +00:00
|
|
|
py = python3.override {
|
2018-08-21 00:27:55 +00: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 11:21:52 +00: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
|
2020-05-06 06:39:44 +00:00
|
|
|
hassVersion = "0.109.6";
|
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
|
|
|
|
2018-03-14 17:48:50 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
2020-03-18 15:24:35 +00:00
|
|
|
patches = [
|
2020-04-08 14:54:11 +00:00
|
|
|
./0001-setup.py-relax-dependencies.patch
|
2020-03-18 15:24:35 +00:00
|
|
|
];
|
2020-02-26 15:51:25 +00:00
|
|
|
|
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";
|
|
|
|
repo = "home-assistant";
|
|
|
|
rev = version;
|
2020-05-06 06:39:44 +00:00
|
|
|
sha256 = "133l6n165yivnc9qmrahk423hmns0hn0dbnx4ys7yaw3x5hqwyns";
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
# From setup.py
|
2019-07-20 02:29:51 +00:00
|
|
|
aiohttp astral async-timeout attrs bcrypt certifi importlib-metadata jinja2
|
|
|
|
pyjwt cryptography pip python-slugify pytz pyyaml requests ruamel_yaml
|
2019-09-14 13:23:26 +00:00
|
|
|
setuptools voluptuous voluptuous-serialize
|
2018-10-17 12:56:55 +00:00
|
|
|
# From http, frontend and recorder components and auth.mfa_modules.totp
|
2020-03-18 15:24:35 +00:00
|
|
|
sqlalchemy aiohttp-cors hass-frontend pyotp pyqrcode ciso8601
|
2018-02-01 12:42:07 +00:00
|
|
|
] ++ componentBuildInputs ++ extraBuildInputs;
|
2018-01-14 21:26:52 +00:00
|
|
|
|
2020-05-06 06:27:19 +00:00
|
|
|
# upstream only tests on Linux, so do we.
|
|
|
|
doCheck = stdenv.isLinux;
|
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
checkInputs = [
|
2020-04-08 14:54:11 +00:00
|
|
|
asynctest pytest pytest-aiohttp requests-mock hass-nabucasa netdisco pydispatcher
|
2019-12-20 07:25:56 +00:00
|
|
|
];
|
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
checkPhase = ''
|
2019-12-20 07:25:56 +00:00
|
|
|
# - components' dependencies are not included, so they cannot be tested
|
|
|
|
# - test_merge_id_schema requires pyqwikswitch
|
2020-04-08 14:54:11 +00:00
|
|
|
# - test_loader.py tries to load not-packaged dependencies
|
2019-12-20 07:25:56 +00:00
|
|
|
# - unclear why test_merge fails: assert merge_log_err.call_count != 0
|
2020-03-18 15:24:35 +00:00
|
|
|
# - test_setup_safe_mode_if_no_frontend: requires dependencies for components we have not packaged
|
2020-04-08 14:54:11 +00:00
|
|
|
py.test --ignore tests/components --ignore tests/test_loader.py -k "not test_setup_safe_mode_if_no_frontend and not test_merge_id_schema and not test_merge"
|
2020-03-18 15:24:35 +00:00
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
# Some basic components should be tested however
|
2018-05-11 17:39:37 +00:00
|
|
|
py.test \
|
2020-03-18 15:24:35 +00:00
|
|
|
tests/components/{api,config,configurator,demo,discovery,frontend,group,history} \
|
2019-04-25 10:52:07 +00:00
|
|
|
tests/components/{homeassistant,http,logger,script,shell_command,system_log,websocket_api}
|
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 06:39:44 +00:00
|
|
|
passthru = {
|
|
|
|
inherit (py.pkgs) hass-frontend;
|
|
|
|
};
|
|
|
|
|
2018-02-10 22:19:19 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://home-assistant.io/";
|
2018-01-14 21:26:52 +00:00
|
|
|
description = "Open-source home automation platform running on Python 3";
|
|
|
|
license = licenses.asl20;
|
2020-04-02 08:48:38 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda globin mic92 ];
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
}
|