fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
27 lines
430 B
Nix
27 lines
430 B
Nix
{
|
|
buildPythonPackage,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
sanic-testing,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "sanic-testing-tests";
|
|
inherit (sanic-testing) version;
|
|
|
|
src = sanic-testing.testsout;
|
|
format = "other";
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
sanic-testing
|
|
setuptools
|
|
];
|
|
|
|
pythonImportsCheck = [ "sanic_testing" ];
|
|
}
|