2019-10-22 20:36:09 +01:00
|
|
|
{ lib, fetchurl, fetchFromGitHub, fetchpatch, python3, protobuf3_6
|
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
|
2019-10-22 20:36:09 +01: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 20:36:09 +01:00
|
|
|
}
|
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
|
|
|
|
2018-08-21 01:27:55 +01: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 01:27:55 +01:00
|
|
|
|
2019-04-22 22:35:37 +01: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 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
|
2020-03-28 00:42:22 +00:00
|
|
|
hassVersion = "0.107.7";
|
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 = [
|
|
|
|
./relax-deps.patch
|
|
|
|
];
|
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-03-28 00:42:22 +00:00
|
|
|
sha256 = "1sr7vzsd4hpaix37bb10vbnnqs1v8ll2wb8m713qrvcp3crs6snk";
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
# From setup.py
|
2019-07-20 03:29:51 +01:00
|
|
|
aiohttp astral async-timeout attrs bcrypt certifi importlib-metadata jinja2
|
|
|
|
pyjwt cryptography pip python-slugify pytz pyyaml requests ruamel_yaml
|
2019-09-14 14:23:26 +01:00
|
|
|
setuptools voluptuous voluptuous-serialize
|
2018-10-17 13:56:55 +01: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
|
|
|
|
|
|
|
checkInputs = [
|
2020-02-26 15:51:25 +00:00
|
|
|
asynctest pytest pytest-aiohttp requests-mock pydispatcher aiohue netdisco
|
2020-03-18 15:24:35 +00:00
|
|
|
hass-nabucasa defusedxml zeroconf
|
2019-12-20 07:25:56 +00:00
|
|
|
];
|
|
|
|
|
2019-10-29 14:06:01 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "aiohttp==3.6.1" "aiohttp" \
|
|
|
|
--replace "attrs==19.2.0" "attrs" \
|
|
|
|
--replace "ruamel.yaml==0.15.100" "ruamel.yaml"
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
|
# - 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
|
|
|
|
py.test --ignore tests/components -k "not test_setup_safe_mode_if_no_frontend and not test_merge_id_schema and not test_merge"
|
|
|
|
|
2018-01-14 21:26:52 +00:00
|
|
|
# Some basic components should be tested however
|
2018-05-11 18:39:37 +01:00
|
|
|
py.test \
|
2020-03-18 15:24:35 +00:00
|
|
|
tests/components/{api,config,configurator,demo,discovery,frontend,group,history} \
|
2019-04-25 11:52:07 +01: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
|
|
|
|
2018-02-10 22:19:19 +00:00
|
|
|
meta = with lib; {
|
2018-01-14 21:26:52 +00:00
|
|
|
homepage = https://home-assistant.io/;
|
|
|
|
description = "Open-source home automation platform running on Python 3";
|
|
|
|
license = licenses.asl20;
|
2020-04-02 09:48:38 +01:00
|
|
|
maintainers = with maintainers; [ dotlambda globin mic92 ];
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
}
|