1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-05 15:22:36 +03:00

python3Packages.async_generator: does not depend on pytest-asyncio

This commit is contained in:
Robert Schütz 2022-04-12 01:25:01 +00:00 committed by Martin Weinelt
parent c2d2758147
commit bfcb28e128

View file

@ -2,7 +2,6 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, pytest-asyncio
, pytestCheckHook , pytestCheckHook
}: }:
@ -19,7 +18,6 @@ buildPythonPackage rec {
}; };
checkInputs = [ checkInputs = [
pytest-asyncio
pytestCheckHook pytestCheckHook
]; ];