depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-asyncio/tests.nix
Default email d5f4a57cbf Project import generated by Copybara.
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
2023-08-10 09:59:29 +02:00

30 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
];
}