nixpkgs-odroid-hc4/pkgs/development/python-modules/sanic-testing/tests.nix
2025-12-20 09:59:59 +11:00

26 lines
375 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;
checkInputs = [
pytest-asyncio
pytestCheckHook
sanic
];
pythonImportsCheck = [
"sanic_testing"
];
}