diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 17:31:16 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 19:08:50 +0200 |
| commit | a5fed110c4f204c2e40363a57bd2901434473e5b (patch) | |
| tree | 99746a08f282ff4bcf545cb78b704dc028979243 | |
| parent | python3Packages.opower: fix tests (diff) | |
| download | nixpkgs-a5fed110c4f204c2e40363a57bd2901434473e5b.tar.gz | |
python3Packages.pyrainbird: test with pytest-asyncio 0.x
| -rw-r--r-- | pkgs/development/python-modules/pyrainbird/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pyrainbird/default.nix b/pkgs/development/python-modules/pyrainbird/default.nix index ba3bd8c2eee9..b145c5bd469e 100644 --- a/pkgs/development/python-modules/pyrainbird/default.nix +++ b/pkgs/development/python-modules/pyrainbird/default.nix @@ -9,7 +9,7 @@ parameterized, pycryptodome, pytest-aiohttp, - pytest-asyncio, + pytest-asyncio_0, pytest-cov-stub, pytest-golden, pytest-mock, @@ -54,8 +54,8 @@ buildPythonPackage rec { nativeCheckInputs = [ freezegun parameterized - pytest-aiohttp - pytest-asyncio + (pytest-aiohttp.override { pytest-asyncio = pytest-asyncio_0; }) + pytest-asyncio_0 pytest-cov-stub pytest-golden pytest-mock |
