29 lines
406 B
Nix
29 lines
406 B
Nix
|
{ buildPythonPackage
|
||
|
, flaky
|
||
|
, hypothesis
|
||
|
, pytest-asyncio
|
||
|
, pytest-trio
|
||
|
, pytestCheckHook
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pytest-asyncio-tests";
|
||
|
inherit (pytest-asyncio) version;
|
||
|
|
||
|
src = pytest-asyncio.testout;
|
||
|
|
||
|
dontBuild = true;
|
||
|
dontInstall = true;
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
pytest-asyncio
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
flaky
|
||
|
hypothesis
|
||
|
pytest-trio
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
}
|