1{ buildPythonPackage 2, sanic-testing 3, pytest-asyncio 4, pytestCheckHook 5}: 6 7buildPythonPackage { 8 pname = "sanic-testing-tests"; 9 inherit (sanic-testing) version; 10 11 src = sanic-testing.testsout; 12 format = "other"; 13 14 dontBuild = true; 15 dontInstall = true; 16 17 nativeCheckInputs = [ 18 pytest-asyncio 19 pytestCheckHook 20 sanic-testing 21 ]; 22 23 pythonImportsCheck = [ 24 "sanic_testing" 25 ]; 26}