02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
28 lines
406 B
Nix
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
|
|
];
|
|
}
|