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