python3Packages.aioesphomeapi: 39.0.1 -> 41.11.0

Diff: https://github.com/esphome/aioesphomeapi/compare/v39.0.1...v41.11.0

Changelog: https://github.com/esphome/aioesphomeapi/releases/tag/v41.11.0

Changed files
+5 -8
pkgs
development
python-modules
aioesphomeapi
+5 -8
pkgs/development/python-modules/aioesphomeapi/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
pythonOlder,
# build-system
cython,
···
# dependencies
aiohappyeyeballs,
async-interrupt,
-
async-timeout,
chacha20poly1305-reuseable,
cryptography,
noiseprotocol,
protobuf,
+
tzlocal,
zeroconf,
# tests
···
buildPythonPackage rec {
pname = "aioesphomeapi";
-
version = "39.0.1";
+
version = "41.11.0";
pyproject = true;
-
-
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "esphome";
repo = "aioesphomeapi";
tag = "v${version}";
-
hash = "sha256-vBRKngr8Yn9TBAS0bXBetwXJbLPDabOL6nW0oH5Q/U0=";
+
hash = "sha256-xJUQyCa4ETroi5ncbPajdfJV4Ekzz23rXRBX08J8Q54=";
};
build-system = [
···
cryptography
noiseprotocol
protobuf
+
tzlocal
zeroconf
-
]
-
++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
+
];
nativeCheckInputs = [
mock