2022-04-15 01:41:22 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, sanic-testing
|
|
|
|
, pytest-asyncio
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage {
|
|
|
|
pname = "sanic-testing-tests";
|
|
|
|
inherit (sanic-testing) version;
|
|
|
|
|
|
|
|
src = sanic-testing.testsout;
|
2023-05-24 13:37:59 +00:00
|
|
|
format = "other";
|
2022-04-15 01:41:22 +00:00
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
dontInstall = true;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-04-15 01:41:22 +00:00
|
|
|
pytest-asyncio
|
|
|
|
pytestCheckHook
|
2023-05-24 13:37:59 +00:00
|
|
|
sanic-testing
|
2022-04-15 01:41:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"sanic_testing"
|
|
|
|
];
|
|
|
|
}
|