`buildDotnetModule`: add support for installing pre-release tools (#374663)
[NixPkgs.git] / pkgs / development / python-modules / sanic-testing / tests.nix
blob977aab15620866c54104a2550f20f01432810eba
2   buildPythonPackage,
3   pytest-asyncio,
4   pytestCheckHook,
5   sanic-testing,
6   setuptools,
7 }:
9 buildPythonPackage {
10   pname = "sanic-testing-tests";
11   inherit (sanic-testing) version;
13   src = sanic-testing.testsout;
14   format = "other";
16   dontBuild = true;
17   dontInstall = true;
19   nativeCheckInputs = [
20     pytest-asyncio
21     pytestCheckHook
22     sanic-testing
23     setuptools
24   ];
26   pythonImportsCheck = [ "sanic_testing" ];