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

29 lines
406 B
Nix
Raw Normal View History

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