summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-asyncio/tests.nix
blob: 051f710af1a8e776b5c1d102677fb24892ad853f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  buildPythonPackage,
  flaky,
  hypothesis,
  pytest-asyncio,
  pytest-trio,
  pytestCheckHook,
}:

buildPythonPackage {
  pname = "pytest-asyncio-tests";
  inherit (pytest-asyncio) version;

  pyproject = false;

  src = pytest-asyncio.testout;

  dontBuild = true;
  dontInstall = true;

  propagatedBuildInputs = [ pytest-asyncio ];

  nativeCheckInputs = [
    flaky
    hypothesis
    pytest-trio
    pytestCheckHook
  ];
}