python3Packages.sanic-auth: fix tests (#121279)

After #120881, packages using Sanic's `app.test_client` or
`app.asgi_client` need to depend on `sanic-testing` as well.

authored by Aluísio Augusto Silva Gonçalves and committed by GitHub 0463f91e 774550ba

Changed files
+2 -2
pkgs
development
python-modules
sanic-auth
+2 -2
pkgs/development/python-modules/sanic-auth/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, sanic, pytestCheckHook }: 1 + { lib, buildPythonPackage, fetchPypi, sanic, sanic-testing, pytestCheckHook }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "Sanic-Auth"; ··· 11 11 12 12 propagatedBuildInputs = [ sanic ]; 13 13 14 - checkInputs = [ pytestCheckHook ]; 14 + checkInputs = [ pytestCheckHook sanic-testing ]; 15 15 16 16 pythonImportsCheck = [ "sanic_auth" ]; 17 17