mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 00:04:14 +00:00
1b43a8d663
Diff: https://github.com/pytest-dev/pytest-asyncio/compare/refs/tags/v0.20.3...v0.21.0 Changelog: https://github.com/pytest-dev/pytest-asyncio/blob/v0.21.0/docs/source/reference/changelog.rst
31 lines
429 B
Nix
31 lines
429 B
Nix
{ buildPythonPackage
|
|
, flaky
|
|
, hypothesis
|
|
, pytest-asyncio
|
|
, pytest-trio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "pytest-asyncio-tests";
|
|
inherit (pytest-asyncio) version;
|
|
|
|
format = "other";
|
|
|
|
src = pytest-asyncio.testout;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
propagatedBuildInputs = [
|
|
pytest-asyncio
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
flaky
|
|
hypothesis
|
|
pytest-trio
|
|
pytestCheckHook
|
|
];
|
|
}
|