home-assistant: pin aioesphomeapi at 19.2.1

Later versions introduced incompatibilities in the bluetooth scanner.
This commit is contained in:
Martin Weinelt 2023-12-16 04:51:59 +01:00
parent 08d6cec730
commit 3522b963f5
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -30,6 +30,16 @@ let
# Override the version of some packages pinned in Home Assistant's setup.py and requirements_all.txt
(self: super: {
aioesphomeapi = super.aioesphomeapi.overridePythonAttrs (oldAttrs: rec {
version = "19.2.1";
src = fetchFromGitHub {
owner = "esphome";
repo = "aioesphomeapi";
rev = "refs/tags/v${version}";
hash = "sha256-WSWGO0kI1m6oaImUYZ6m5WKJ+xPs/rtn5wVq1bDr+bE=";
};
});
# https://github.com/home-assistant/core/pull/101913
aiohttp = super.aiohttp.overridePythonAttrs (old: rec {
version = "3.9.1";