Merge pull request #214361 from NixOS/home-assistant

home-assistant: 2023.2.0 -> 2023.2.1
This commit is contained in:
Martin Weinelt 2023-02-03 17:26:20 +00:00 committed by GitHub
commit 2430a6c162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 73 additions and 43 deletions

View File

@ -3,13 +3,11 @@
, fetchFromGitHub
, aiohttp
, prettytable
, mock
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "aiosomecomfort";
version = "0.0.3";
version = "0.0.6";
format = "setuptools";
@ -17,26 +15,19 @@ buildPythonPackage rec {
owner = "mkmer";
repo = "AIOSomecomfort";
rev = "refs/tags/${version}";
hash = "sha256-Qw0KR934GS7AuT3nRYaunypt091fZLRioVbNOp9JesY=";
hash = "sha256-3p38gWCqQVYz3sgu6SgfPH+wH/ZH2Qg+tVXiARuUh7s=";
};
postPatch = ''
# https://github.com/mkmer/AIOSomecomfort/issues/1
mv aiosomecomfort AIOSomecomfort
'';
propagatedBuildInputs = [
aiohttp
prettytable
];
checkInputs = [
mock
pytestCheckHook
pythonImportsCheck = [
"aiosomecomfort"
];
# SyntaxError in test.py
doCheck = false;
doCheck = false; # tests only run on windows, due to WindowsSelectorEventLoopPolicy
meta = {
description = "AsyicIO client for US models of Honeywell Thermostats";

View File

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "py-synologydsm-api";
version = "2.1.0";
version = "2.1.1";
format = "pyproject";
disabled = pythonOlder "3.8";
@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "mib1185";
repo = "py-synologydsm-api";
rev = "refs/tags/v${version}";
hash = "sha256-bolcqPIBHglZ7Em8/66MBypivDPehdgTaPOxAjR9Bd0=";
hash = "sha256-rT9KkSgIinJxTyJ40Z3VzMh23Ry9O3NFrLH4I2+NFPg=";
};
nativeBuildInputs = [

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, attrs
, requests
, python
}:
buildPythonPackage rec {
pname = "pyqwikswitch";
version = "0.94";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-IpyWz+3EMr0I+xULBJJhBgdnQHNPJIM1SqKFLpszhQc=";
};
propagatedBuildInputs = [
attrs
requests
];
pythonImportsCheck = [
"pyqwikswitch"
"pyqwikswitch.threaded"
];
doCheck = false; # no tests in sdist
meta = with lib; {
description = "QwikSwitch USB Modem API binding for Python";
homepage = "https://github.com/kellerza/pyqwikswitch";
license = licenses.mit;
maintainers = teams.home-assistant.members;
};
}

View File

@ -2,7 +2,7 @@
# Do not edit!
{
version = "2023.2.0";
version = "2023.2.1";
components = {
"3_day_blinds" = ps: with ps; [
];
@ -2970,7 +2970,8 @@
pyqvrpro
];
"qwikswitch" = ps: with ps; [
]; # missing inputs: pyqwikswitch
pyqwikswitch
];
"rachio" = ps: with ps; [
pyturbojpeg
aiohttp-cors
@ -4899,6 +4900,7 @@
"qingping"
"qld_bushfire"
"qnap_qsw"
"qwikswitch"
"rachio"
"radarr"
"radio_browser"

View File

@ -271,7 +271,7 @@ let
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);
# Don't forget to run parse-requirements.py after updating
hassVersion = "2023.2.0";
hassVersion = "2023.2.1";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -289,9 +289,13 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
hash = "sha256-tW1tVPJ50DIGIuxJP9nq4+Tw4fiPA+kINSclW7JkJmE=";
hash = "sha256-gWcq0E/k6c4YQJwLlU379kse2u4Yn6xvLZ5QnGXVTJA=";
};
nativeBuildInputs = with python3.pkgs; [
setuptools
];
# leave this in, so users don't have to constantly update their downstream patch handling
patches = [
(substituteAll {
@ -328,7 +332,7 @@ in python.pkgs.buildPythonApplication rec {
'';
propagatedBuildInputs = with python.pkgs; [
# Only packages required in setup.py
# Only packages required in pyproject.toml
aiohttp
astral
async-timeout
@ -346,6 +350,7 @@ in python.pkgs.buildPythonApplication rec {
lru-dict
orjson
pip
pyopenssl
pyjwt
python-slugify
pyyaml
@ -353,10 +358,8 @@ in python.pkgs.buildPythonApplication rec {
voluptuous
voluptuous-serialize
yarl
# Not in setup.py, but used in homeassistant/util/package.py
# Implicit dependency via homeassistant/requirements.py
setuptools
# Not in setup.py, but uncounditionally imported via tests/conftest.py
paho-mqtt
] ++ componentBuildInputs ++ extraBuildInputs;
makeWrapperArgs = lib.optional skipPip "--add-flags --skip-pip";
@ -369,22 +372,28 @@ in python.pkgs.buildPythonApplication rec {
freezegun
pytest-asyncio
pytest-aiohttp
pytest-freezegun
pytest-freezer
pytest-mock
pytest-rerunfailures
pytest-socket
pytest-timeout
pytest-unordered
pytest-xdist
pytestCheckHook
requests-mock
respx
stdlib-list
# required by tests/auth/mfa_modules
tomli
# required through tests/auth/mfa_modules/test_otp.py
pyotp
# Sneakily imported in tests/conftest.py
paho-mqtt
] ++ lib.concatMap (component: getPackages component python.pkgs) [
# some components are needed even if tests in tests/components are disabled
"default_config"
"hue"
# for tests/test_config.py::test_merge_id_schema
"qwikswitch"
];
pytestFlagsArray = [
@ -395,8 +404,8 @@ in python.pkgs.buildPythonApplication rec {
"--only-rerun RuntimeError"
# enable full variable printing on error
"--showlocals"
# helpers/test_system_info.py: AssertionError: assert 'Unknown' == 'Home Assistant Container'
"--deselect tests/helpers/test_system_info.py::test_container_installationtype"
# AssertionError: assert 1 == 0
"--deselect tests/test_config.py::test_merge"
# tests are located in tests/
"tests"
];
@ -408,17 +417,6 @@ in python.pkgs.buildPythonApplication rec {
"tests/pylint"
# don't bulk test all components
"tests/components"
# pyotp since v2.4.0 complains about the short mock keys, hass pins v2.3.0
"tests/auth/mfa_modules/test_notify.py"
];
disabledTests = [
# AssertionError: assert 1 == 0
"test_merge"
# Tests are flaky
"test_config_platform_valid"
# Test requires pylint>=2.13.0
"test_invalid_discovery_info"
];
preCheck = ''

View File

@ -4,7 +4,7 @@ buildPythonPackage rec {
# the frontend version corresponding to a specific home-assistant version can be found here
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend";
version = "20230201.0";
version = "20230202.0";
format = "wheel";
src = fetchPypi {
@ -12,7 +12,7 @@ buildPythonPackage rec {
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
hash = "sha256-CG4I3YI1swiAV02+NXvi9n87dXrTJFlMUcOnB9ebmWk=";
hash = "sha256-Wo3bQnwTDSAC4EhJeYIXx1wODyx3wA2KMMaM3pJEkGw=";
};
# there is nothing to strip in this package

View File

@ -76,8 +76,8 @@ in lib.listToAttrs (map (component: lib.nameValuePair component (
++ home-assistant.getPackages component home-assistant.python.pkgs
++ extraCheckInputs.${component} or [ ];
disabledTests = old.disabledTests ++ extraDisabledTests.${component} or [];
disabledTestPaths = old.disabledTestPaths ++ extraDisabledTestPaths.${component} or [ ];
disabledTests = old.disabledTests or [] ++ extraDisabledTests.${component} or [];
disabledTestPaths = old.disabledTestPaths or [] ++ extraDisabledTestPaths.${component} or [ ];
# components are more often racy than the core
dontUsePytestXdist = true;

View File

@ -8624,6 +8624,8 @@ self: super: with self; {
pyqvrpro = callPackage ../development/python-modules/pyqvrpro { };
pyqwikswitch = callPackage ../development/python-modules/pyqwikswitch { };
pyrabbit2 = callPackage ../development/python-modules/pyrabbit2 { };
pyrad = callPackage ../development/python-modules/pyrad { };