nixpkgs/pkgs/servers/home-assistant/default.nix

148 lines
4.9 KiB
Nix
Raw Normal View History

2020-06-20 10:05:30 +00:00
{ stdenv, nixosTests, lib, fetchurl, fetchFromGitHub, fetchpatch, python3, protobuf3_6
# Look up dependencies of specified components in component-packages.nix
2019-12-20 07:25:56 +00:00
, extraComponents ? [ ]
# Additional packages to add to propagatedBuildInputs
2018-01-14 21:26:52 +00:00
, extraPackages ? ps: []
# Override Python packages using
# self: super: { pkg = super.pkg.overridePythonAttrs (oldAttrs: { ... }); }
# Applied after defaultOverrides
, packageOverrides ? self: super: {
# TODO: Remove this override after updating to cryptography 2.8:
}
# Skip pip install of required packages on startup
2018-01-14 21:26:52 +00:00
, skipPip ? true }:
let
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
# required by the sun/moon plugins
# https://github.com/home-assistant/core/issues/36636
(mkOverride "astral" "1.10.1"
"d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1")
2020-07-15 14:28:50 +00:00
# Required by cast component. Can probably be removed in 0.113.x
# https://github.com/home-assistant/core/commit/86c27b50f1282658b75fe71f9f6fd2fcabc2eaa2
(mkOverride "PyChromecast" "6.0.0"
"05f8r3b2pdqbl76hwi5sv2xdi1r7g9lgm69x8ja5g22mn7ysmghm")
# We have 3.x in nixpkgs which is incompatible with home-assistant atm:
# https://github.com/home-assistant/core/blob/dev/requirements_all.txt
(mkOverride "pyowm" "2.10.0"
"1xvcv3sbcn9na8cwz21nnjlixysfk5lymnf65d1nqkbgacc1mm4g")
# required by aioesphomeapi
(self: super: {
protobuf = super.protobuf.override {
protobuf = protobuf3_6;
};
})
# hass-frontend does not exist in python3.pkgs
(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 {
inherit version sha256;
2018-05-11 17:39:37 +00:00
};
});
2018-01-14 21:26:52 +00:00
};
py = python3.override {
# 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
};
componentPackages = import ./component-packages.nix;
availableComponents = builtins.attrNames componentPackages.components;
getPackages = component: builtins.getAttr component componentPackages.components;
componentBuildInputs = lib.concatMap (component: getPackages component py.pkgs) extraComponents;
2018-01-14 21:26:52 +00:00
# Ensure that we are using a consistent package set
extraBuildInputs = extraPackages py.pkgs;
# Don't forget to run parse-requirements.py after updating
2020-07-07 00:02:25 +00:00
hassVersion = "0.112.3";
2018-01-14 21:26:52 +00:00
in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant";
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
inherit availableComponents;
2018-01-14 21:26:52 +00:00
# PyPI tarball is missing tests/ directory
src = fetchFromGitHub {
owner = "home-assistant";
2020-05-20 21:41:42 +00:00
repo = "core";
2018-01-14 21:26:52 +00:00
rev = version;
2020-07-07 00:02:25 +00:00
sha256 = "1azfbjnyaamdnl2f3cllh6pd3kinl1wjqb4hlb569gb8zqs5bsx2";
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
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
] ++ 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} \
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;
2020-06-20 10:05:30 +00:00
tests = {
inherit (nixosTests) home-assistant;
};
2020-05-06 06:39:44 +00:00
};
2018-02-10 22:19:19 +00:00
meta = with lib; {
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;
maintainers = with maintainers; [ dotlambda globin mic92 hexa ];
2018-01-14 21:26:52 +00:00
};
}