2022-08-12 12:06:08 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, flaky
|
|
|
|
, hypothesis
|
|
|
|
, pytest-asyncio
|
|
|
|
, pytest-trio
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
buildPythonPackage {
|
2022-08-12 12:06:08 +00:00
|
|
|
pname = "pytest-asyncio-tests";
|
|
|
|
inherit (pytest-asyncio) version;
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
format = "other";
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
src = pytest-asyncio.testout;
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
dontInstall = true;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pytest-asyncio
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-08-12 12:06:08 +00:00
|
|
|
flaky
|
|
|
|
hypothesis
|
|
|
|
pytest-trio
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
}
|