evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pytest-asyncio / tests.nix
blobd5f8ead94cbe5d944f9ec385218215c9bac8c701
2   buildPythonPackage,
3   flaky,
4   hypothesis,
5   pytest-asyncio,
6   pytest-trio,
7   pytestCheckHook,
8 }:
10 buildPythonPackage {
11   pname = "pytest-asyncio-tests";
12   inherit (pytest-asyncio) version;
14   format = "other";
16   src = pytest-asyncio.testout;
18   dontBuild = true;
19   dontInstall = true;
21   propagatedBuildInputs = [ pytest-asyncio ];
23   nativeCheckInputs = [
24     flaky
25     hypothesis
26     pytest-trio
27     pytestCheckHook
28   ];