Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 26 lines 381 B view raw
1{ buildPythonPackage 2, sanic 3, sanic-testing 4, pytest-asyncio 5, pytestCheckHook 6}: 7 8buildPythonPackage { 9 pname = "sanic-testing-tests"; 10 inherit (sanic-testing) version; 11 12 src = sanic-testing.testsout; 13 14 dontBuild = true; 15 dontInstall = true; 16 17 nativeCheckInputs = [ 18 pytest-asyncio 19 pytestCheckHook 20 sanic 21 ]; 22 23 pythonImportsCheck = [ 24 "sanic_testing" 25 ]; 26}