My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sanic-testing/tests.nix

26 lines
375 B

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