a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
26 lines
381 B
Nix
26 lines
381 B
Nix
{ buildPythonPackage
|
|
, sanic
|
|
, sanic-testing
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "sanic-testing-tests";
|
|
inherit (sanic-testing) version;
|
|
|
|
src = sanic-testing.testsout;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
sanic
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"sanic_testing"
|
|
];
|
|
}
|