python3Packages.pytest-asyncio: 0.18.1 -> 0.18.3

https://github.com/pytest-dev/pytest-asyncio/blob/v0.18.3/CHANGELOG.rst
This commit is contained in:
Robert Schütz 2022-04-12 01:18:24 +00:00 committed by Martin Weinelt
parent bfcb28e128
commit d735ed3864

View file

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "pytest-asyncio";
version = "0.18.1";
version = "0.18.3";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "pytest-dev";
repo = pname;
rev = "v${version}";
hash = "sha256-9KN45+Pdz40rJv1NUxuoy8xWtLGt7kz7YcqfjfZ9x4A=";
hash = "sha256-eopKlDKiTvGmqcqw44MKlhvSKswKZd/VDYRpZbuyOqM=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -29,17 +29,20 @@ buildPythonPackage rec {
setuptools-scm
];
propagatedBuildInputs = [
buildInputs = [
pytest
];
checkInputs = [
flaky
hypothesis
flaky
pytestCheckHook
];
disabledTestPaths = [
"tests/trio" # pytest-trio causes infinite recursion
];
pythonImportsCheck = [
"pytest_asyncio"
];
@ -47,6 +50,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for testing asyncio code with pytest";
homepage = "https://github.com/pytest-dev/pytest-asyncio";
changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/${src.rev}/CHANGELOG.rst";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};