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