a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
28 lines
412 B
Nix
28 lines
412 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
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
flaky
|
|
hypothesis
|
|
pytest-trio
|
|
pytestCheckHook
|
|
];
|
|
}
|