9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
28 lines
408 B
Nix
28 lines
408 B
Nix
{ buildPythonPackage
|
|
, flaky
|
|
, hypothesis
|
|
, pytest-asyncio
|
|
, pytest-trio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "pytest-asyncio-tests";
|
|
inherit (pytest-asyncio) version;
|
|
|
|
src = pytest-asyncio.testout;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
propagatedBuildInputs = [
|
|
pytest-asyncio
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
flaky
|
|
hypothesis
|
|
pytest-trio
|
|
pytestCheckHook
|
|
];
|
|
}
|