python313Packages.aioesphomeapi: 43.13.0 -> 43.14.0, python313Packages.bleak-esphome: 3.4.0 -> 3.4.1 (#483940)

This commit is contained in:
Fabian Affolter
2026-01-26 13:36:45 +00:00
committed by GitHub
2 changed files with 8 additions and 17 deletions
@@ -26,14 +26,14 @@
buildPythonPackage (finalAttrs: {
pname = "aioesphomeapi";
version = "43.13.0";
version = "43.14.0";
pyproject = true;
src = fetchFromGitHub {
owner = "esphome";
repo = "aioesphomeapi";
tag = "v${finalAttrs.version}";
hash = "sha256-ffpXmZcDd0L1wY+S3pzkenlart9jSRSeeJdwd2GGu2w=";
hash = "sha256-SuJNGRaXWq7KDMshq46oKSVD+1eVUqOhy9D/R3OLeys=";
};
build-system = [
@@ -7,7 +7,6 @@
buildPythonPackage,
cython,
fetchFromGitHub,
fetchpatch,
habluetooth,
lru-dict,
poetry-core,
@@ -18,26 +17,18 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "bleak-esphome";
version = "3.4.0";
version = "3.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "bluetooth-devices";
repo = "bleak-esphome";
tag = "v${version}";
hash = "sha256-BFF4SqJxrQ+aaFtrNqS9fNqTV2Q+pOu5FFdYKeHkKj8=";
tag = "v${finalAttrs.version}";
hash = "sha256-unVo56W/zS8qgU3AC9nxosfO5jlx8zgYoTZZehkcBiQ=";
};
patches = [
(fetchpatch {
name = "bleak-2.0.0-compat.patch";
url = "https://github.com/Bluetooth-Devices/bleak-esphome/commit/a186eca427d1c0924ce29cbb46cde876e0c6e246.patch";
hash = "sha256-QPyN/k/xG03rZqYbexzN1GJaAqOe5FqfrDJ2fjiIkJs=";
})
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools>=75.8.2" setuptools
@@ -77,8 +68,8 @@ buildPythonPackage rec {
meta = {
description = "Bleak backend of ESPHome";
homepage = "https://github.com/bluetooth-devices/bleak-esphome";
changelog = "https://github.com/bluetooth-devices/bleak-esphome/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/bluetooth-devices/bleak-esphome/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})