+2
-2
pkgs/development/python-modules/sanic-auth/default.nix
+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