depot/third_party/nixpkgs/pkgs/development/python-modules/sanic-testing/tests.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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" ];
}