python3.pkgs.webargs: fix tests with newer pytest-asyncio (#438337)

Changed files
+8
pkgs
development
python-modules
webargs
+8
pkgs/development/python-modules/webargs/default.nix
···
pyramid,
falcon,
aiohttp,
+
fetchpatch,
}:
buildPythonPackage rec {
···
inherit pname version;
hash = "sha256-DGF97BntTx/2skfNc4VelJ2HBS1xkAk4tx8Mr9kvGRs=";
};
+
+
patches = [
+
(fetchpatch {
+
url = "https://github.com/marshmallow-code/webargs/commit/a6a5043ee34b0a22885b3625de6d4fdffc3b715b.patch";
+
hash = "sha256-EFe76SAklgmBjfM6K8PkB0vHMCSlZ9EKAW9AbnxKmPA=";
+
})
+
];
build-system = [ flit-core ];