17 buildPythonPackage rec {
22 disabled = pythonOlder "3.9";
24 src = fetchFromGitHub {
27 rev = "refs/tags/${version}";
28 hash = "sha256-6RxYn8/HAvXv1AEgSIEOLiaBkGgTcqQhWK+xbtxgj/o=";
31 build-system = [ poetry-core ];
33 buildInputs = [ pytest ];
35 optional-dependencies = {
36 curio = [ curio-compat ];
46 ] ++ lib.flatten (lib.attrValues optional-dependencies);
48 pythonImportsCheck = [ "pytest_aio" ];
51 description = "Pytest plugin for aiohttp support";
52 homepage = "https://github.com/klen/pytest-aio";
53 changelog = "https://github.com/klen/pytest-aio/blob/${version}/CHANGELOG.md";
54 license = licenses.mit;
55 maintainers = with maintainers; [ fab ];