python312Packages.doorbirdpy: fix tests with aiohttp 3.10

This commit is contained in:
Robert Schütz
2024-08-09 14:48:18 +02:00
committed by Martin Weinelt
parent 897b706a94
commit 7faa8c73b7
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitLab,
fetchpatch2,
setuptools,
aiohttp,
aioresponses,
@@ -21,6 +22,15 @@ buildPythonPackage rec {
hash = "sha256-6B4EMK41vEpmLoQLD+XN9yStLdxyHHk/Mym9J0o7Qvc=";
};
patches = [
# https://gitlab.com/klikini/doorbirdpy/-/merge_requests/15
(fetchpatch2 {
name = "aiohttp-3.10-compat.patch";
url = "https://gitlab.com/klikini/doorbirdpy/-/commit/91f417433be36a0c9d2baaf0d6ff1a45042f94eb.patch";
hash = "sha256-b/ORH6ygkiBreWYTH7rP8b68HlFUEyLQCzVo1KLffPQ=";
})
];
build-system = [ setuptools ];
dependencies = [ aiohttp ];