1{ buildPythonPackage 2, flaky 3, hypothesis 4, pytest-asyncio 5, pytest-trio 6, pytestCheckHook 7}: 8 9buildPythonPackage { 10 pname = "pytest-asyncio-tests"; 11 inherit (pytest-asyncio) version; 12 13 format = "other"; 14 15 src = pytest-asyncio.testout; 16 17 dontBuild = true; 18 dontInstall = true; 19 20 propagatedBuildInputs = [ 21 pytest-asyncio 22 ]; 23 24 nativeCheckInputs = [ 25 flaky 26 hypothesis 27 pytest-trio 28 pytestCheckHook 29 ]; 30}