Merge pull request #194640 from NixOS/home-assistant

This commit is contained in:
Martin Weinelt 2022-10-06 01:42:08 +02:00 committed by GitHub
commit c02a16815b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 229 additions and 131 deletions

View File

@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "bellows";
version = "0.33.1";
version = "0.34.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "zigpy";
repo = "bellows";
rev = "refs/tags/${version}";
sha256 = "sha256-cpWQdsuW3CA/8HowhMoVV++rrDnjFQcgp+A5CCElj6o=";
sha256 = "sha256-a2skDJVqbct1+Ky2D8LXv8VMqFwqznUzXh+o+M6GtvQ=";
};
propagatedBuildInputs = [

View File

@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "bluetooth-adapters";
version = "0.5.2";
version = "0.6.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-SyEe/auJaagRl3wg7JjBkLAgHyAeCeesEXvWXE733M4=";
hash = "sha256-26w7513h5WWGqKz4OqHob42O0bk1yW8ePPKB2V9+AHs=";
};
postPatch = ''

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, dacite
, pysnmplib
, pytest-asyncio
, pytest-error-for-skips
@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "brother";
version = "1.2.3";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -19,10 +20,11 @@ buildPythonPackage rec {
owner = "bieniu";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-+o6hv63u6FBEu57mD02lss0LQPwgBnXsP8CKQ+/74/Q=";
hash = "sha256-pk9VBFha2NfQWI+fbWwGKcGFa93eKr5Cqh85r1CAXpI=";
};
propagatedBuildInputs = [
dacite
pysnmplib
];

View File

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "bthome-ble";
version = "1.0.0";
version = "1.2.2";
format = "pyproject";
disabled = pythonOlder "3.9";
@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
hash = "sha256-yTbJ69FPMIsc/w7UXfvXPLXGRs9s0F4YiccljRyI5Ek=";
hash = "sha256-2/2ODlHqQOl4LHUb2fyQpmsBYnoz0Rvc9lLEfZTKijA=";
};
nativeBuildInputs = [

View File

@ -30,6 +30,12 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# mypy_main(None, text_io, text_io, [__file__], clean_exit=True)
# TypeError: main() takes at most 4 arguments (5 given)
"test_type_hints"
];
pythonImportsCheck = [ "dataclasses_json" ];
meta = with lib; {

View File

@ -6,11 +6,12 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "dbus-fast";
version = "1.17.0";
version = "1.24.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -19,11 +20,12 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
hash = "sha256-HbjeO+imWocc5bL62gdWHf8kBR6HNWwEu+KqO4ldHe4=";
hash = "sha256-2bQwq5qjvtM+HTIJpEzH+Xaq42LTixqnX/zRRZV9lgA=";
};
nativeBuildInputs = [
poetry-core
setuptools
];
propagatedBuildInputs = [
@ -37,8 +39,7 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=dbus_fast --cov-report=term-missing:skip-covered" "" \
--replace "[tool.poetry.group.dev.dependencies]" ""
--replace " --cov=dbus_fast --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [

View File

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "fritzconnection";
version = "1.9.1";
version = "1.10.3";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "kbr";
repo = pname;
rev = version;
sha256 = "sha256-wapZ4lCG0tfE+LbFVeIxVlbMJN/sSwIeYK5GLCqoWLs=";
sha256 = "sha256-eRvo40VXgo+SQGeh88vRfHPnbrsVDyz03ToIgwRc43Q=";
};
propagatedBuildInputs = [

View File

@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "plugwise";
version = "0.23.0";
version = "0.24.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = pname;
repo = "python-plugwise";
rev = "refs/tags/v${version}";
sha256 = "sha256-nLJLp5LnsluZe/pzLvycvjPmPYXGGobZaS5kI70CVa8=";
sha256 = "sha256-WoXBUUe/2XX+CgoZB1o2sj2FIoWS6ECikJWrUSreJUY=";
};
propagatedBuildInputs = [

View File

@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "zha-quirks";
version = "0.0.80";
version = "0.0.82";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zha-device-handlers";
rev = "refs/tags/${version}";
hash = "sha256-tmXOkOUW2d3Kntx1wgzN3J4l5jrSfz2q9YT1gfHjtro=";
hash = "sha256-2pm0fLPw/ROjYwvaL1wyZ39ZAbAjwc1TPsbYsO0+vcI=";
};
propagatedBuildInputs = [

View File

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "zigpy-deconz";
version = "0.18.1";
version = "0.19.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-in40vbSupz0DhYZQYkGo5nUBt8sEwJ15wZCMVq4YRbA=";
hash = "sha256-HYLL+1o133Is40wVCPJoUGZO1B/43p+V8K2rJ/mdMFQ=";
};
propagatedBuildInputs = [

View File

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "zigpy-xbee";
version = "0.15.0";
version = "0.16.0";
# https://github.com/Martiusweb/asynctest/issues/152
# broken by upstream python bug with asynctest and
# is used exclusively by home-assistant with python 3.8
@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zigpy-xbee";
rev = version;
sha256 = "sha256-NT7d5JWaVZOrk32uYh0z0sI9RA4eJYYIa2D/Ei81KjY=";
sha256 = "sha256-0Eg+XaMDEB3Zh0Ksn8Nsaf7AYdhRqzpscuZIz19DxCI=";
};
buildInputs = [

View File

@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "zigpy-zigate";
version = "0.9.2";
version = "0.10.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -22,8 +22,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "zigpy";
repo = "zigpy-zigate";
rev = "refs/tags/${version}";
hash = "sha256-89e9QkFxBdw5YujL73zR7jys0sCJz5r/jNaVmLxv37g=";
rev = "refs/tags/v${version}";
hash = "sha256-JcKmLD3ET17PaNm1DoAV8TDMw88Qd5okDPOStLUqASM=";
};
propagatedBuildInputs = [

View File

@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "zigpy-znp";
version = "0.8.2";
version = "0.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-90D8MP8p0zFvmxtWXxfPzLuRACeVk4vGdUYxh6cZb08=";
sha256 = "sha256-GvGWda+vsDwJrRIjc3hkl9zMrJ/cj2HGvHSeCROE69g=";
};
propagatedBuildInputs = [

View File

@ -8,7 +8,8 @@
, freezegun
, fetchFromGitHub
, pycryptodome
, pytest-aiohttp
, pyserial-asyncio
, pytest-asyncio
, pytest-timeout
, pytestCheckHook
, pythonOlder
@ -17,7 +18,7 @@
buildPythonPackage rec {
pname = "zigpy";
version = "0.50.3";
version = "0.51.2";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -26,7 +27,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zigpy";
rev = "refs/tags/${version}";
hash = "sha256-Od5BEi5Cu1Gzd4ZkPc2lfmsEZoqsxqiUKqZ2vkW/8sE=";
hash = "sha256-6JHj75ntbW3Pu4P6/nw0/xhZ+fZCfpNCzB1ZB7WJ0jY=";
};
propagatedBuildInputs = [
@ -34,17 +35,17 @@ buildPythonPackage rec {
aiosqlite
crccheck
cryptography
pyserial-asyncio
pycryptodome
voluptuous
];
checkInputs = [
asynctest
freezegun
pytest-aiohttp
pytest-asyncio
pytest-timeout
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.8") [
asynctest
];
pythonImportsCheck = [

View File

@ -10,16 +10,16 @@
buildPythonPackage rec {
pname = "zwave-js-server-python";
version = "0.41.1";
version = "0.43.0";
format = "setuptools";
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-V4QEsHkakqYsZ09Q8BJG9fhREdGboirF5sNxm8t+dAQ=";
hash = "sha256-qzAM3vcVySJB6OfOHKXYYXDR+xOSbGpyH7b9TaYkOLM=";
};
propagatedBuildInputs = [

View File

@ -2,7 +2,7 @@
# Do not edit!
{
version = "2022.9.7";
version = "2022.10.0";
components = {
"abode" = ps: with ps; [
abodepy
@ -84,9 +84,6 @@
"amazon_polly" = ps: with ps; [
boto3
];
"ambee" = ps: with ps; [
ambee
];
"amberelectric" = ps: with ps; [
amberelectric
];
@ -197,8 +194,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
yalexs-ble
yalexs
];
@ -292,8 +293,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"blueprint" = ps: with ps; [
];
@ -307,8 +312,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"bluetooth_le_tracker" = ps: with ps; [
aiohttp-cors
@ -317,8 +326,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"bluetooth_tracker" = ps: with ps; [
bt-proximity
@ -368,8 +381,12 @@
bluetooth-auto-recovery
bthome-ble
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"buienradar" = ps: with ps; [
buienradar
@ -429,10 +446,6 @@
];
"clicksend_tts" = ps: with ps; [
];
"climacell" = ps: with ps; [
pyclimacell
pytomorrowio
];
"climate" = ps: with ps; [
];
"cloud" = ps: with ps; [
@ -801,8 +814,12 @@
bluetooth-auto-recovery
construct
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
]; # missing inputs: python-eq3bt
"escea" = ps: with ps; [
pescea
@ -815,9 +832,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
ifaddr
pillow
pyserial
pyudev
sqlalchemy
zeroconf
];
"etherscan" = ps: with ps; [
@ -910,8 +931,12 @@
bluetooth-auto-recovery
dbus-fast
fjaraskupan
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"fleetgo" = ps: with ps; [
ritassist
@ -936,9 +961,6 @@
"flume" = ps: with ps; [
pyflume
];
"flunearyou" = ps: with ps; [
pyflunearyou
];
"flux" = ps: with ps; [
];
"flux_led" = ps: with ps; [
@ -958,6 +980,8 @@
forecast-solar
];
"forked_daapd" = ps: with ps; [
aiohttp-cors
spotipy
]; # missing inputs: pyforked-daapd pylibrespot-java
"fortios" = ps: with ps; [
fortiosapi
@ -1097,6 +1121,10 @@
"google_pubsub" = ps: with ps; [
google-cloud-pubsub
];
"google_sheets" = ps: with ps; [
aiohttp-cors
gspread
];
"google_translate" = ps: with ps; [
gtts
];
@ -1112,9 +1140,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
govee-ble
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"gpsd" = ps: with ps; [
gps3
@ -1262,9 +1294,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
ifaddr
pillow
pyserial
pyudev
sqlalchemy
zeroconf
];
"homematic" = ps: with ps; [
@ -1303,8 +1339,7 @@
aiohue
];
"huisbaasje" = ps: with ps; [
huisbaasje-client
];
]; # missing inputs: energyflip-client
"humidifier" = ps: with ps; [
];
"hunterdouglas_powerview" = ps: with ps; [
@ -1327,6 +1362,21 @@
"iaqualink" = ps: with ps; [
iaqualink
];
"ibeacon" = ps: with ps; [
aiohttp-cors
bleak-retry-connector
bleak
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
ibeacon-ble
pillow
pyserial
pyudev
sqlalchemy
];
"icloud" = ps: with ps; [
pyicloud
];
@ -1371,9 +1421,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
inkbird-ble
pillow
pyserial
pyudev
sqlalchemy
];
"input_boolean" = ps: with ps; [
];
@ -1477,12 +1531,42 @@
aiokef
getmac
];
"kegtron" = ps: with ps; [
aiohttp-cors
bleak-retry-connector
bleak
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
kegtron-ble
pillow
pyserial
pyudev
sqlalchemy
];
"keyboard" = ps: with ps; [
]; # missing inputs: pyuserinput
"keyboard_remote" = ps: with ps; [
aionotify
evdev
];
"keymitt_ble" = ps: with ps; [
pymicrobot
aiohttp-cors
bleak-retry-connector
bleak
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"kira" = ps: with ps; [
pykira
];
@ -1546,9 +1630,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
led-ble
pillow
pyserial
pyudev
sqlalchemy
];
"lg_netcast" = ps: with ps; [
pylgnetcast
@ -1556,6 +1644,9 @@
"lg_soundbar" = ps: with ps; [
temescal
];
"lidarr" = ps: with ps; [
aiopyarr
];
"life360" = ps: with ps; [
life360
];
@ -1713,8 +1804,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
]; # missing inputs: melnor-bluetooth
"meraki" = ps: with ps; [
aiohttp-cors
@ -1786,9 +1881,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
moat-ble
pillow
pyserial
pyudev
sqlalchemy
];
"mobile_app" = ps: with ps; [
pynacl
@ -1953,6 +2052,9 @@
];
"nfandroidtv" = ps: with ps; [
]; # missing inputs: notifications-android-tv
"nibe_heatpump" = ps: with ps; [
tenacity
]; # missing inputs: nibe
"nightscout" = ps: with ps; [
py-nightscout
];
@ -1980,6 +2082,9 @@
];
"noaa_tides" = ps: with ps; [
]; # missing inputs: noaa-coops
"nobo_hub" = ps: with ps; [
pynobo
];
"norway_air" = ps: with ps; [
pymetno
];
@ -2291,9 +2396,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
qingping-ble
sqlalchemy
];
"qld_bushfire" = ps: with ps; [
georss-qld-bushfire-alert-client
@ -2323,6 +2432,7 @@
rachiopy
];
"radarr" = ps: with ps; [
aiopyarr
];
"radio_browser" = ps: with ps; [
radios
@ -2541,9 +2651,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sensorpro-ble
sqlalchemy
];
"sensorpush" = ps: with ps; [
aiohttp-cors
@ -2552,9 +2666,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sensorpush-ble
sqlalchemy
];
"sentry" = ps: with ps; [
sentry-sdk
@ -2823,6 +2941,8 @@
];
"switch_as_x" = ps: with ps; [
];
"switchbee" = ps: with ps; [
]; # missing inputs: pyswitchbee
"switchbot" = ps: with ps; [
pyswitchbot
aiohttp-cors
@ -2831,8 +2951,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
];
"switcher_kis" = ps: with ps; [
aioswitcher
@ -2937,8 +3061,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
thermobeacon-ble
];
"thermopro" = ps: with ps; [
@ -2948,8 +3076,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
thermopro-ble
];
"thermoworks_smoke" = ps: with ps; [
@ -2975,6 +3107,21 @@
"tile" = ps: with ps; [
pytile
];
"tilt_ble" = ps: with ps; [
aiohttp-cors
bleak-retry-connector
bleak
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
tilt-ble
];
"time_date" = ps: with ps; [
];
"timer" = ps: with ps; [
@ -3136,8 +3283,6 @@
pyserial
pyudev
];
"uscis" = ps: with ps; [
]; # missing inputs: uscisstatus
"usgs_earthquakes_feed" = ps: with ps; [
aio-geojson-usgs-earthquakes
];
@ -3329,8 +3474,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
xiaomi-ble
];
"xiaomi_miio" = ps: with ps; [
@ -3356,8 +3505,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
fnvhash
home-assistant-frontend
pillow
pyserial
pyudev
sqlalchemy
yalexs-ble
];
"yamaha" = ps: with ps; [
@ -3481,7 +3634,6 @@
"alert"
"alexa"
"almond"
"ambee"
"amberelectric"
"ambiclimate"
"ambient_station"
@ -3489,6 +3641,7 @@
"android_ip_webcam"
"androidtv"
"apache_kafka"
"apcupsd"
"api"
"apple_tv"
"application_credentials"
@ -3537,7 +3690,6 @@
"canary"
"cast"
"cert_expiry"
"climacell"
"climate"
"cloud"
"cloudflare"
@ -3583,6 +3735,7 @@
"dnsip"
"doorbird"
"dsmr"
"dsmr_reader"
"dte_energy_bridge"
"duckdns"
"dunehd"
@ -3632,7 +3785,6 @@
"flipr"
"flo"
"flume"
"flunearyou"
"flux"
"flux_led"
"folder"
@ -3670,6 +3822,7 @@
"google_assistant"
"google_domains"
"google_pubsub"
"google_sheets"
"google_translate"
"google_travel_time"
"google_wifi"
@ -3712,13 +3865,13 @@
"http"
"huawei_lte"
"hue"
"huisbaasje"
"humidifier"
"hunterdouglas_powerview"
"hvv_departures"
"hyperion"
"ialarm"
"iaqualink"
"ibeacon"
"icloud"
"ifttt"
"ign_sismologia"
@ -3751,6 +3904,8 @@
"juicenet"
"justnimbus"
"keenetic_ndms2"
"kegtron"
"keymitt_ble"
"kira"
"kmtronic"
"knx"
@ -3765,6 +3920,7 @@
"lcn"
"led_ble"
"lg_soundbar"
"lidarr"
"life360"
"lifx"
"light"
@ -3843,6 +3999,7 @@
"nightscout"
"nina"
"no_ip"
"nobo_hub"
"notify"
"notify_events"
"notion"
@ -4036,6 +4193,7 @@
"threshold"
"tibber"
"tile"
"tilt_ble"
"time_date"
"timer"
"tod"

View File

@ -56,28 +56,6 @@ let
});
})
(self: super: {
bleak = super.bleak.overridePythonAttrs (oldAttrs: rec {
version = "0.17.0";
src = fetchFromGitHub {
owner = "hbldh";
repo = "bleak";
rev = "refs/tags/v${version}";
hash = "sha256-AnH23AWrLw2jq6gSbx9VoGD8QXeCH5dN7FSVVdj4b3w=";
};
});
bleak-retry-connector = super.bleak-retry-connector.overridePythonAttrs (oldAttrs: rec {
version = "1.17.1";
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = "bleak-retry-connector";
rev = "refs/tags/v${version}";
hash = "sha256-FoQ1cDORQaJcr6y9JaO4MigqV6jiBbwKNIIdYDgFNxQ=";
};
});
})
(self: super: {
blebox-uniapi = super.blebox-uniapi.overridePythonAttrs (oldAttrs: rec {
version = "2.0.2";
@ -90,19 +68,6 @@ let
});
})
(self: super: {
bluetooth-adapters = super.bluetooth-adapters.overridePythonAttrs (oldAttrs: rec {
version = "0.4.1";
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ super.dbus-fast ];
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = "bluetooth-adapters";
rev = "refs/tags/v${version}";
hash = "sha256-LAT4r6RHJWTkrZvuL1aSQDiztvXiOJwGmNQKGFnvFB8=";
};
});
})
(self: super: {
gridnet = super.gridnet.overridePythonAttrs (oldAttrs: rec {
version = "4.0.0";
@ -163,18 +128,6 @@ let
});
})
(self: super: {
plugwise = super.plugwise.overridePythonAttrs (oldAttrs: rec {
version = "0.20.1";
src = fetchFromGitHub {
owner = "plugwise";
repo = "python-plugwise";
rev = "refs/tags/v${version}";
hash = "sha256-Sk7L0JPwn7IXVl5GeERxrG/vrHXeNwUjW1mgm4g40Ng=";
};
});
})
# Pinned due to API changes in 0.1.0
(self: super: {
poolsense = super.poolsense.overridePythonAttrs (oldAttrs: rec {
@ -200,26 +153,12 @@ let
});
})
(self: super: {
pyatmo = super.pyatmo.overridePythonAttrs (oldAttrs: rec {
version = "6.2.4";
src = fetchFromGitHub {
owner = "jabesq";
repo = "pyatmo";
rev = "refs/tags/v${version}";
hash = "sha256-VXkQByaNA02fwBO2yuf7w1ZF/oJwd/h21de1EQlCu2U=";
};
checkInputs = [ super.freezegun ];
});
})
(self: super: {
pydeconz = super.pydeconz.overridePythonAttrs (oldAttrs: rec {
doCheck = false; # requires pytest-aiohttp>=1.0.0
});
})
(self: super: {
python-slugify = super.python-slugify.overridePythonAttrs (oldAttrs: rec {
pname = "python-slugify";
@ -243,17 +182,6 @@ let
});
})
(self: super: {
solax = super.solax.overridePythonAttrs (oldAttrs: rec {
version = "0.2.9";
src = super.fetchPypi {
pname = "solax";
inherit version;
hash = "sha256-5m2wxdTshAsEfldPAyXqAYYtH1VjqERRBUGzX6pV85I=";
};
});
})
(self: super: {
pysoma = super.pysoma.overridePythonAttrs (oldAttrs: rec {
version = "0.0.10";
@ -333,7 +261,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 = "2022.9.7";
hassVersion = "2022.10.0";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -351,7 +279,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
hash = "sha256-V6/y5HnJh8AVwkSg3uanYQRNvDcD1P0L+wBu98NpDek=";
hash = "sha256-BTUuQ4qAP/O53P289ldYlMsLlaNek/FOeDYHwnjCwvE=";
};
# leave this in, so users don't have to constantly update their downstream patch handling

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 = "20220907.2";
version = "20221005.0";
format = "wheel";
src = fetchPypi {
@ -12,7 +12,7 @@ buildPythonPackage rec {
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
sha256 = "sha256-ykId53EMPRXmMmoS55ZtjF6UR/JVPtBXFqjwuK2E2F4=";
sha256 = "sha256-Tc6MxUPEdL7jOyUwGm1H0c3w7HC15NZ1FGyp681GRYw=";
};
# there is nothing to strip in this package

View File

@ -13,12 +13,14 @@ let
config = [ pydispatcher ];
generic = [ av ];
google_translate = [ mutagen ];
google_sheets = [ oauth2client ];
homeassistant_sky_connect = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ];
homeassistant_yellow = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ];
lovelace = [ PyChromecast ];
nest = [ av ];
onboarding = [ pymetno radios rpi-bad-power ];
raspberry_pi = [ rpi-bad-power ];
tilt_ble = [ govee-ble ibeacon-ble ];
tomorrowio = [ pyclimacell ];
version = [ aioaseko ];
xiaomi_miio = [ arrow ];