1 { lib, buildPythonPackage, fetchPypi, pytest, aiohttp }:
3 buildPythonPackage rec {
4 pname = "pytest-aiohttp";
9 sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
12 buildInputs = [ pytest ];
14 propagatedBuildInputs = [ aiohttp ];
20 homepage = "https://github.com/aio-libs/pytest-aiohttp/";
21 description = "Pytest plugin for aiohttp support";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ dotlambda ];