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

131 lines
4.4 KiB
Nix
Raw Normal View History

2020-05-06 06:27:19 +00:00
{ stdenv, 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
# 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")
# 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-04-29 14:32:56 +00:00
hassVersion = "0.109.0";
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";
repo = "home-assistant";
rev = version;
2020-04-29 14:32:56 +00:00
sha256 = "1b5y464yhngivxkz3cg2b7j2ssawy7fqr3si5pdmqkgz1dbqihhn";
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
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 ];
2018-01-14 21:26:52 +00:00
};
}