2021-03-07 04:46:28 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2022-01-15 00:20:08 +00:00
|
|
|
, callPackage
|
2021-03-07 04:46:28 +00:00
|
|
|
, fetchFromGitHub
|
2023-03-02 01:29:14 +00:00
|
|
|
, fetchPypi
|
2021-12-11 19:59:08 +00:00
|
|
|
, fetchpatch
|
2021-03-07 04:46:28 +00:00
|
|
|
, python3
|
2021-12-11 19:59:08 +00:00
|
|
|
, substituteAll
|
2022-12-01 10:39:22 +00:00
|
|
|
, ffmpeg-headless
|
2021-05-18 01:43:52 +01:00
|
|
|
, inetutils
|
2021-03-07 04:46:28 +00:00
|
|
|
, nixosTests
|
2022-12-21 16:45:07 +00:00
|
|
|
, home-assistant
|
|
|
|
, testers
|
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
|
|
|
|
2022-02-14 00:48:09 +00:00
|
|
|
# Write out info about included extraComponents and extraPackages
|
|
|
|
, writeText
|
|
|
|
|
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 = [
|
2021-09-10 02:59:36 +01:00
|
|
|
# Override the version of some packages pinned in Home Assistant's setup.py and requirements_all.txt
|
|
|
|
|
2022-07-21 13:07:40 +01:00
|
|
|
(self: super: {
|
2023-01-19 01:26:59 +00:00
|
|
|
advantage-air = super.advantage-air.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.4.1";
|
|
|
|
src = super.fetchPypi {
|
|
|
|
pname = "advantage_air";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-I9HMDLZX9xKDJuYSAweM2r4v3ZKevHTn5dHTYxN3EuE=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-01-18 13:46:42 +00:00
|
|
|
aiowatttime = super.aiowatttime.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bachya";
|
|
|
|
repo = "aiowatttime";
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-tWnxGLJT+CRFvkhxFamHxnLXBvoR8tfOvzH1o1i5JJg=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-01-01 00:04:10 +00:00
|
|
|
astral = super.astral.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
pname = "astral";
|
|
|
|
version = "2.2";
|
|
|
|
src = self.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-5B2ZZ9XEi+QhNGVS8PTe2tQ/85qDV09f8q0ytmJ7b74=";
|
|
|
|
};
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace "poetry.masonry" "poetry.core.masonry"
|
|
|
|
'';
|
|
|
|
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
|
|
|
|
self.pytz
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2023-01-17 11:48:24 +00:00
|
|
|
dsmr-parser = super.dsmr-parser.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.33";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ndokter";
|
|
|
|
repo = "dsmr_parser";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-Phx8Yqx6beTzkQv0fU8Pfs2btPgKVARdO+nMcne1S+w=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-01-18 13:03:16 +00:00
|
|
|
# Pinned due to API changes in 10.0
|
|
|
|
mcstatus = super.mcstatus.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "9.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "py-mine";
|
|
|
|
repo = "mcstatus";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-kNThVElEDqhbCitktBv5tQkjMaU4IsX0dJk63hvLhb0=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-01-18 13:28:00 +00:00
|
|
|
# Pinned due to API changes in 1.3.0
|
|
|
|
ovoenergy = super.ovoenergy.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "timmo001";
|
|
|
|
repo = "ovoenergy";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-OSK74uvpHuEtWgbLVFrz1NO7lvtHbt690smGQ+GlsOI=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2022-10-15 00:24:46 +01:00
|
|
|
# Pinned due to API changes in 0.1.0
|
2022-07-26 12:13:53 +01:00
|
|
|
poolsense = super.poolsense.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.0.8";
|
|
|
|
src = super.fetchPypi {
|
|
|
|
pname = "poolsense";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-17MHrYRmqkH+1QLtgq2d6zaRtqvb9ju9dvPt9gB2xCc=";
|
|
|
|
};
|
|
|
|
});
|
2021-09-10 02:59:36 +01:00
|
|
|
|
2022-10-15 00:24:46 +01:00
|
|
|
# Pinned due to API changes >0.3.5.3
|
2022-02-11 11:28:46 +00:00
|
|
|
pyatag = super.pyatag.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.3.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MatsNl";
|
|
|
|
repo = "pyatag";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "00ly4injmgrj34p0lyx7cz2crgnfcijmzc0540gf7hpwha0marf6";
|
|
|
|
};
|
|
|
|
});
|
2022-01-11 12:46:41 +00:00
|
|
|
|
2023-01-19 01:11:51 +00:00
|
|
|
# https://github.com/home-assistant/core/pull/80931
|
|
|
|
pyjwt = super.pyjwt.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "2.5.0";
|
|
|
|
src = super.fetchPypi {
|
|
|
|
pname = "PyJWT";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-53q4lICQXYaZhEKsV4jzUzP6hfZQR6U0rcOO3zyI/Ds=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2022-06-03 12:47:55 +01:00
|
|
|
python-slugify = super.python-slugify.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
pname = "python-slugify";
|
|
|
|
version = "4.0.1";
|
|
|
|
src = super.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-aaUXdm4AwSaOW7/A0BCgqFCN4LGNMK1aH/NX+K5yQnA=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-02-01 23:15:24 +00:00
|
|
|
pytradfri = super.pytradfri.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "9.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "home-assistant-libs";
|
|
|
|
repo = "pytradfri";
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-xOdTzG0bF5p1QpkXv2btwrVugQRjSwdAj8bXcC0IoQg=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-01-09 21:08:10 +00:00
|
|
|
python-telegram-bot = super.python-telegram-bot.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "13.15";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "python-telegram-bot";
|
|
|
|
repo = "python-telegram-bot";
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-EViSjr/nnuJIDTwV8j/O50hJkWV3M5aTNnWyzrinoyg=";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
self.APScheduler
|
|
|
|
self.cachetools
|
|
|
|
self.certifi
|
|
|
|
self.cryptography
|
|
|
|
self.decorator
|
|
|
|
self.future
|
|
|
|
self.tornado
|
|
|
|
self.urllib3
|
|
|
|
];
|
|
|
|
setupPyGlobalFlags = [ "--with-upstream-urllib3" ];
|
|
|
|
postPatch = ''
|
|
|
|
rm -r telegram/vendor
|
|
|
|
substituteInPlace requirements.txt \
|
|
|
|
--replace "APScheduler==3.6.3" "APScheduler" \
|
|
|
|
--replace "cachetools==4.2.2" "cachetools" \
|
|
|
|
--replace "tornado==6.1" "tornado"
|
|
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
});
|
|
|
|
|
2023-03-02 01:29:14 +00:00
|
|
|
sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
|
2023-03-08 17:57:31 +00:00
|
|
|
version = "2.0.5.post1";
|
2023-03-02 01:29:14 +00:00
|
|
|
src = super.fetchPypi {
|
|
|
|
pname = "SQLAlchemy";
|
|
|
|
inherit version;
|
2023-03-08 17:57:31 +00:00
|
|
|
hash = "sha256-E+sqWILP2fTu2q7BSlYDoJbwEl98PLSGEbO/o8JT8l0=";
|
2023-03-02 01:29:14 +00:00
|
|
|
};
|
|
|
|
nativeCheckInputs = oldAttrs.nativeCheckInputs ++ (with super; [
|
|
|
|
pytest-xdist
|
|
|
|
]);
|
|
|
|
disabledTestPaths = (oldAttrs.disabledTestPaths or []) ++ [
|
|
|
|
"test/aaa_profiling"
|
|
|
|
"test/ext/mypy"
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2022-10-15 00:24:46 +01:00
|
|
|
# Pinned due to API changes in 0.3.0
|
2022-09-08 01:12:45 +01:00
|
|
|
tailscale = super.tailscale.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "frenck";
|
|
|
|
repo = "python-tailscale";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-/tS9ZMUWsj42n3MYPZJYJELzX3h02AIHeRZmD2SuwWE=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2022-10-15 00:24:46 +01:00
|
|
|
# Pinned due to API changes in 0.4.0
|
2021-12-11 19:59:08 +00:00
|
|
|
vilfo-api-client = super.vilfo-api-client.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ManneW";
|
|
|
|
repo = "vilfo-api-client-python";
|
2022-05-04 20:44:09 +01:00
|
|
|
rev = "v${version}";
|
2021-12-11 19:59:08 +00:00
|
|
|
sha256 = "1gy5gpsg99rcm1cc3m30232za00r9i46sp74zpd12p3vzz1wyyqf";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-01-18 13:41:47 +00:00
|
|
|
# Pinned due to API changes in 2.0
|
|
|
|
vsure = super.vsure.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "1.8.1";
|
|
|
|
src = super.fetchPypi {
|
|
|
|
pname = "vsure";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-Zh83t7yjZU2NjOgCkqPUHbqvEyEWXGITRgr5d2fLtRI=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2022-10-15 00:24:46 +01:00
|
|
|
# Pinned due to API changes ~1.0
|
2021-12-11 19:59:08 +00:00
|
|
|
vultr = super.vultr.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spry-group";
|
|
|
|
repo = "python-vultr";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1qjvvr2v9gfnwskdl0ayazpcmiyw9zlgnijnhgq9mcri5gq9jw5h";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2023-01-12 05:06:41 +00:00
|
|
|
# internal python packages only consumed by home-assistant itself
|
2021-06-15 14:28:31 +01:00
|
|
|
home-assistant-frontend = self.callPackage ./frontend.nix { };
|
2023-01-12 05:06:41 +00:00
|
|
|
home-assistant-intents = self.callPackage ./intents.nix { };
|
2018-08-21 01:27:55 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2022-01-15 00:20:08 +00:00
|
|
|
python = python3.override {
|
2022-07-19 12:25:52 +01:00
|
|
|
packageOverrides = lib.composeManyExtensions (defaultOverrides ++ [ packageOverrides ]);
|
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;
|
|
|
|
|
2022-01-15 00:20:08 +00:00
|
|
|
inherit (componentPackages) supportedComponentsWithTests;
|
2018-02-01 12:42:07 +00:00
|
|
|
|
2022-01-15 00:20:08 +00:00
|
|
|
getPackages = component: componentPackages.components.${component};
|
|
|
|
|
|
|
|
componentBuildInputs = lib.concatMap (component: getPackages component python.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
|
2022-01-15 00:20:08 +00:00
|
|
|
extraBuildInputs = extraPackages python.pkgs;
|
2018-01-14 21:26:52 +00:00
|
|
|
|
2018-02-01 12:42:07 +00:00
|
|
|
# Don't forget to run parse-requirements.py after updating
|
2023-03-08 17:57:31 +00:00
|
|
|
hassVersion = "2023.3.2";
|
2018-02-01 12:42:07 +00:00
|
|
|
|
2022-01-15 00:20:08 +00:00
|
|
|
in python.pkgs.buildPythonApplication rec {
|
2018-01-14 21:26:52 +00:00
|
|
|
pname = "homeassistant";
|
2018-02-01 12:42:07 +00:00
|
|
|
version = assert (componentPackages.version == hassVersion); hassVersion;
|
2022-02-02 20:53:50 +00:00
|
|
|
format = "pyproject";
|
2018-01-14 21:26:52 +00:00
|
|
|
|
2020-10-07 19:28:25 +01:00
|
|
|
# check REQUIRED_PYTHON_VER in homeassistant/const.py
|
2023-02-01 23:15:24 +00:00
|
|
|
disabled = python.pythonOlder "3.10";
|
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;
|
|
|
|
|
2023-03-02 01:29:14 +00:00
|
|
|
# Primary source is the pypi sdist, because it contains translations
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-08 17:57:31 +00:00
|
|
|
hash = "sha256-I6NSVoMS3xbUqh/7BxJj/Evkk7+g3N0dZVJjEbr2pCs=";
|
2023-03-02 01:29:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Secondary source is git for tests
|
|
|
|
gitSrc = fetchFromGitHub {
|
2018-01-14 21:26:52 +00:00
|
|
|
owner = "home-assistant";
|
2020-05-20 22:41:42 +01:00
|
|
|
repo = "core";
|
2022-12-21 17:43:58 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2023-03-08 17:57:31 +00:00
|
|
|
hash = "sha256-Qd++/73c9VDNe4AMdiDIVJXxh4qFx2x4HDkY1An2VjE=";
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
|
2023-02-03 14:49:42 +00:00
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2023-03-02 01:29:14 +00:00
|
|
|
# copy tests early, so patches apply as they would to the git repo
|
|
|
|
prePatch = ''
|
|
|
|
cp --no-preserve=mode --recursive ${gitSrc}/tests ./
|
|
|
|
chmod u+x tests/auth/providers/test_command_line_cmd.sh
|
|
|
|
'';
|
|
|
|
|
2020-11-04 11:52:54 +00:00
|
|
|
# leave this in, so users don't have to constantly update their downstream patch handling
|
2021-03-07 04:46:28 +00:00
|
|
|
patches = [
|
2021-12-11 19:59:08 +00:00
|
|
|
(substituteAll {
|
|
|
|
src = ./patches/ffmpeg-path.patch;
|
2022-12-01 10:39:22 +00:00
|
|
|
ffmpeg = "${lib.getBin ffmpeg-headless}/bin/ffmpeg";
|
2021-12-11 19:59:08 +00:00
|
|
|
})
|
2021-03-07 04:46:28 +00:00
|
|
|
];
|
2020-11-04 11:52:54 +00:00
|
|
|
|
2022-01-16 21:04:42 +00:00
|
|
|
postPatch = let
|
|
|
|
relaxedConstraints = [
|
2022-11-09 06:10:46 +00:00
|
|
|
"aiohttp"
|
2022-01-16 21:04:42 +00:00
|
|
|
"attrs"
|
|
|
|
"awesomeversion"
|
|
|
|
"bcrypt"
|
2023-01-01 00:04:10 +00:00
|
|
|
"ciso8601"
|
2022-06-05 13:26:25 +01:00
|
|
|
"cryptography"
|
2022-08-03 17:17:18 +01:00
|
|
|
"home-assistant-bluetooth"
|
2022-01-16 21:04:42 +00:00
|
|
|
"httpx"
|
2022-07-19 17:05:08 +01:00
|
|
|
"ifaddr"
|
2022-07-06 22:09:18 +01:00
|
|
|
"orjson"
|
2022-06-01 16:13:09 +01:00
|
|
|
"PyJWT"
|
2023-02-01 23:15:24 +00:00
|
|
|
"pyOpenSSL"
|
2022-06-27 11:14:59 +01:00
|
|
|
"requests"
|
2022-10-09 21:30:30 +01:00
|
|
|
"typing-extensions"
|
2022-09-15 04:18:02 +01:00
|
|
|
"yarl"
|
2022-01-16 21:04:42 +00:00
|
|
|
];
|
|
|
|
in ''
|
|
|
|
sed -r -i \
|
|
|
|
${lib.concatStringsSep "\n" (map (package:
|
2022-07-06 22:09:18 +01:00
|
|
|
''-e 's/${package}[<>=]+.*/${package}",/g' \''
|
2022-01-16 21:04:42 +00:00
|
|
|
) relaxedConstraints)}
|
2022-07-06 22:09:18 +01:00
|
|
|
pyproject.toml
|
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
|
|
|
'';
|
|
|
|
|
2022-01-15 00:20:08 +00:00
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
2023-02-03 14:49:42 +00:00
|
|
|
# Only packages required in pyproject.toml
|
2021-02-04 16:36:21 +00:00
|
|
|
aiohttp
|
|
|
|
astral
|
|
|
|
async-timeout
|
2022-07-09 01:19:46 +01:00
|
|
|
atomicwrites-homeassistant
|
2021-02-04 16:36:21 +00:00
|
|
|
attrs
|
2021-02-05 13:48:53 +00:00
|
|
|
awesomeversion
|
2021-02-04 16:36:21 +00:00
|
|
|
bcrypt
|
|
|
|
certifi
|
|
|
|
ciso8601
|
|
|
|
cryptography
|
|
|
|
httpx
|
2022-08-03 17:17:18 +01:00
|
|
|
home-assistant-bluetooth
|
2021-12-28 15:43:50 +00:00
|
|
|
ifaddr
|
2021-02-04 16:36:21 +00:00
|
|
|
jinja2
|
2022-07-06 22:09:18 +01:00
|
|
|
lru-dict
|
|
|
|
orjson
|
2021-02-04 16:36:21 +00:00
|
|
|
pip
|
2023-02-03 14:49:42 +00:00
|
|
|
pyopenssl
|
2021-02-04 16:36:21 +00:00
|
|
|
pyjwt
|
|
|
|
python-slugify
|
|
|
|
pyyaml
|
|
|
|
requests
|
|
|
|
voluptuous
|
|
|
|
voluptuous-serialize
|
|
|
|
yarl
|
2023-02-03 14:49:42 +00:00
|
|
|
# Implicit dependency via homeassistant/requirements.py
|
2021-06-27 17:38:36 +01:00
|
|
|
setuptools
|
2023-02-20 15:54:37 +00:00
|
|
|
];
|
2018-01-14 21:26:52 +00:00
|
|
|
|
2021-02-06 03:47:04 +00:00
|
|
|
makeWrapperArgs = lib.optional skipPip "--add-flags --skip-pip";
|
|
|
|
|
2020-05-06 07:27:19 +01:00
|
|
|
# upstream only tests on Linux, so do we.
|
|
|
|
doCheck = stdenv.isLinux;
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python.pkgs; [
|
2021-05-10 20:25:43 +01:00
|
|
|
# test infrastructure (selectively from requirement_test.txt)
|
2021-11-03 21:28:03 +00:00
|
|
|
freezegun
|
2023-01-04 22:13:31 +00:00
|
|
|
pytest-asyncio
|
2021-02-04 16:36:21 +00:00
|
|
|
pytest-aiohttp
|
2023-02-03 14:49:42 +00:00
|
|
|
pytest-freezer
|
2021-05-07 16:22:57 +01:00
|
|
|
pytest-mock
|
2021-03-02 16:56:33 +00:00
|
|
|
pytest-rerunfailures
|
2021-11-03 21:28:03 +00:00
|
|
|
pytest-socket
|
2023-02-03 14:49:42 +00:00
|
|
|
pytest-timeout
|
2023-01-04 22:13:31 +00:00
|
|
|
pytest-unordered
|
2021-02-04 16:36:21 +00:00
|
|
|
pytest-xdist
|
|
|
|
pytestCheckHook
|
|
|
|
requests-mock
|
2021-02-06 03:47:04 +00:00
|
|
|
respx
|
2022-01-15 00:20:08 +00:00
|
|
|
stdlib-list
|
2023-03-02 01:29:14 +00:00
|
|
|
syrupy
|
2023-02-03 14:49:42 +00:00
|
|
|
tomli
|
|
|
|
# required through tests/auth/mfa_modules/test_otp.py
|
2021-05-10 20:25:43 +01:00
|
|
|
pyotp
|
2023-02-03 14:49:42 +00:00
|
|
|
# Sneakily imported in tests/conftest.py
|
|
|
|
paho-mqtt
|
2022-01-15 00:20:08 +00:00
|
|
|
] ++ lib.concatMap (component: getPackages component python.pkgs) [
|
|
|
|
# some components are needed even if tests in tests/components are disabled
|
2020-10-08 00:27:42 +01:00
|
|
|
"default_config"
|
2021-02-04 16:36:21 +00:00
|
|
|
"hue"
|
2023-02-03 14:49:42 +00:00
|
|
|
# for tests/test_config.py::test_merge_id_schema
|
|
|
|
"qwikswitch"
|
2020-10-08 00:27:42 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
pytestFlagsArray = [
|
2021-05-18 01:43:52 +01:00
|
|
|
# assign tests grouped by file to workers
|
|
|
|
"--dist loadfile"
|
2021-03-02 16:56:33 +00:00
|
|
|
# retry racy tests that end in "RuntimeError: Event loop is closed"
|
|
|
|
"--reruns 3"
|
|
|
|
"--only-rerun RuntimeError"
|
2021-05-15 15:56:35 +01:00
|
|
|
# enable full variable printing on error
|
|
|
|
"--showlocals"
|
2023-02-03 14:49:42 +00:00
|
|
|
# AssertionError: assert 1 == 0
|
|
|
|
"--deselect tests/test_config.py::test_merge"
|
2021-05-18 01:43:52 +01:00
|
|
|
# tests are located in tests/
|
|
|
|
"tests"
|
2022-01-15 00:20:08 +00:00
|
|
|
];
|
2020-10-08 00:27:42 +01:00
|
|
|
|
2021-02-06 03:47:04 +00:00
|
|
|
disabledTestPaths = [
|
2022-05-25 01:43:47 +01:00
|
|
|
# we neither run nor distribute hassfest
|
|
|
|
"tests/hassfest"
|
2022-05-22 21:58:11 +01:00
|
|
|
# we don't care about code quality
|
|
|
|
"tests/pylint"
|
2021-02-06 03:47:04 +00:00
|
|
|
# don't bulk test all components
|
|
|
|
"tests/components"
|
2020-10-08 00:27:42 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
2021-04-07 19:34:08 +01:00
|
|
|
export HOME="$TEMPDIR"
|
|
|
|
|
2020-10-01 03:07:05 +01:00
|
|
|
# the tests require the existance of a media dir
|
|
|
|
mkdir /build/media
|
2021-04-07 00:41:57 +01:00
|
|
|
|
2021-05-18 01:43:52 +01:00
|
|
|
# put ping binary into PATH, e.g. for wake_on_lan tests
|
|
|
|
export PATH=${inetutils}/bin:$PATH
|
2018-01-14 21:26:52 +00:00
|
|
|
'';
|
|
|
|
|
2020-05-06 07:39:44 +01:00
|
|
|
passthru = {
|
2022-01-15 00:20:08 +00:00
|
|
|
inherit
|
|
|
|
availableComponents
|
|
|
|
extraComponents
|
|
|
|
getPackages
|
|
|
|
python
|
|
|
|
supportedComponentsWithTests;
|
2023-02-20 15:54:37 +00:00
|
|
|
pythonPath = python3.pkgs.makePythonPath (componentBuildInputs ++ extraBuildInputs);
|
2023-01-12 05:06:41 +00:00
|
|
|
intents = python.pkgs.home-assistant-intents;
|
2020-06-20 11:05:30 +01:00
|
|
|
tests = {
|
2022-01-15 00:20:08 +00:00
|
|
|
nixos = nixosTests.home-assistant;
|
|
|
|
components = callPackage ./tests.nix { };
|
2022-12-21 16:45:07 +00:00
|
|
|
version = testers.testVersion {
|
|
|
|
package = home-assistant;
|
|
|
|
command = "hass --version";
|
|
|
|
};
|
2020-06-20 11:05:30 +01:00
|
|
|
};
|
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;
|
2021-04-06 00:16:25 +01:00
|
|
|
maintainers = teams.home-assistant.members;
|
2021-04-03 22:39:33 +01:00
|
|
|
platforms = platforms.linux;
|
2018-01-14 21:26:52 +00:00
|
|
|
};
|
|
|
|
}
|