nixpkgs/pkgs/development/python-modules/pytest-asyncio/tests.nix

31 lines
429 B
Nix

{ buildPythonPackage
, flaky
, hypothesis
, pytest-asyncio
, pytest-trio
, pytestCheckHook
}:
buildPythonPackage {
pname = "pytest-asyncio-tests";
inherit (pytest-asyncio) version;
format = "other";
src = pytest-asyncio.testout;
dontBuild = true;
dontInstall = true;
propagatedBuildInputs = [
pytest-asyncio
];
nativeCheckInputs = [
flaky
hypothesis
pytest-trio
pytestCheckHook
];
}