ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sanic-testing / tests.nix
blob6a228a9823102888665c0ed4f8e309e204ea1af7
1 { buildPythonPackage
2 , sanic
3 , sanic-testing
4 , pytest-asyncio
5 , pytestCheckHook
6 }:
8 buildPythonPackage {
9   pname = "sanic-testing-tests";
10   inherit (sanic-testing) version;
12   src = sanic-testing.testsout;
14   dontBuild = true;
15   dontInstall = true;
17   checkInputs = [
18     pytest-asyncio
19     pytestCheckHook
20     sanic
21   ];
23   pythonImportsCheck = [
24     "sanic_testing"
25   ];