Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.aiohttp-sse: test with pytest-asyncio 0.x

Changed files
+3 -3
pkgs
development
python-modules
aiohttp-sse
+3 -3
pkgs/development/python-modules/aiohttp-sse/default.nix
··· 4 4 fetchFromGitHub, 5 5 lib, 6 6 pytest-aiohttp, 7 - pytest-asyncio, 7 + pytest-asyncio_0, 8 8 pytest-cov-stub, 9 9 pytestCheckHook, 10 10 setuptools, ··· 31 31 pythonImportsCheck = [ "aiohttp_sse" ]; 32 32 33 33 nativeCheckInputs = [ 34 - pytest-aiohttp 35 - pytest-asyncio 34 + (pytest-aiohttp.override { pytest-asyncio = pytest-asyncio_0; }) 35 + pytest-asyncio_0 36 36 pytest-cov-stub 37 37 pytestCheckHook 38 38 ];