depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-asyncio/tests.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

28 lines
406 B
Nix

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