nixpkgs/pkgs/development/python-modules/sanic-testing/tests.nix
Michael Daniels 5ed07317e9
treewide: change 'format = "other";' to 'pyproject = false;'
Entirely find-and-replace based.

A few usages that would cause rebuilds if changed remain.

This PR should have 0 rebuilds.
2026-01-12 17:50:37 -05:00

27 lines
431 B
Nix

{
buildPythonPackage,
pytest-asyncio,
pytestCheckHook,
sanic-testing,
setuptools,
}:
buildPythonPackage {
pname = "sanic-testing-tests";
inherit (sanic-testing) version;
src = sanic-testing.testsout;
pyproject = false;
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
sanic-testing
setuptools
];
pythonImportsCheck = [ "sanic_testing" ];
}