2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
flaky,
|
|
|
|
hypothesis,
|
|
|
|
pytest-asyncio,
|
|
|
|
pytest-trio,
|
|
|
|
pytestCheckHook,
|
2022-08-12 12:06:08 +00:00
|
|
|
}:
|
|
|
|
|
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;
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [ pytest-asyncio ];
|
2022-08-12 12:06:08 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-08-12 12:06:08 +00:00
|
|
|
flaky
|
|
|
|
hypothesis
|
|
|
|
pytest-trio
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
}
|