1{
2 buildPythonPackage,
3 flaky,
4 hypothesis,
5 pytest-asyncio,
6 pytest-trio,
7 pytestCheckHook,
8}:
9
10buildPythonPackage {
11 pname = "pytest-asyncio-tests";
12 inherit (pytest-asyncio) version;
13
14 format = "other";
15
16 src = pytest-asyncio.testout;
17
18 dontBuild = true;
19 dontInstall = true;
20
21 propagatedBuildInputs = [ pytest-asyncio ];
22
23 nativeCheckInputs = [
24 flaky
25 hypothesis
26 pytest-trio
27 pytestCheckHook
28 ];
29}