python314Packages.aiohttp-cors: fix tests

This commit is contained in:
Robert Schütz
2026-03-03 19:22:49 -08:00
parent 7656a64fda
commit de17467f58
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
aiohttp,
pytestCheckHook,
pytest-aiohttp,
@@ -20,6 +21,15 @@ buildPythonPackage rec {
hash = "sha256-AbMuUeCNM8+oZj/hutG3zxHOwYN8uZlLFBeYTlu1fh4=";
};
patches = [
# https://github.com/aio-libs/aiohttp-cors/pull/563
(fetchpatch {
name = "replace-deprecated-asyncio.iscoroutinefunction-with-its-counterpart-from-inspect.patch";
url = "https://github.com/aio-libs/aiohttp-cors/commit/efafc0f780a494377910f2328057f83e95f8bf74.patch";
hash = "sha256-BvE5qqAx83+084khkHt4zjXgR7Bu/ceqMOOh/6fe5TA=";
})
];
build-system = [ setuptools ];
dependencies = [ aiohttp ];