python3Packages.pytest-asyncio: 1.1.0 -> 1.2.0 (#451532)

This commit is contained in:
dotlambda
2025-10-15 17:48:03 +00:00
committed by GitHub
@@ -7,18 +7,19 @@
pytest,
setuptools-scm,
backports-asyncio-runner,
typing-extensions,
}:
buildPythonPackage rec {
pname = "pytest-asyncio";
version = "1.1.0"; # N.B.: when updating, tests bleak and aioesphomeapi tests
version = "1.2.0"; # N.B.: when updating, tests bleak and aioesphomeapi tests
pyproject = true;
src = fetchFromGitHub {
owner = "pytest-dev";
repo = "pytest-asyncio";
tag = "v${version}";
hash = "sha256-+dLOzMPKI3nawfyZVZZ6hg6OkaEGZBp8oC5VIr7y0es=";
hash = "sha256-27FCV7zgFGe/Q0fkYyh5Z05foVGhbKBRPTH4UK/tW5A=";
};
outputs = [
@@ -29,8 +30,12 @@ buildPythonPackage rec {
build-system = [ setuptools-scm ];
buildInputs = [ pytest ];
dependencies = lib.optionals (pythonOlder "3.11") [
dependencies = [
backports-asyncio-runner
]
++ lib.optionals (pythonOlder "3.13") [
typing-extensions
];
postInstall = ''