1{ lib, buildPythonPackage, fetchPypi, pytest, aiohttp }: 2 3buildPythonPackage rec { 4 pname = "pytest-aiohttp"; 5 version = "0.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9"; 10 }; 11 12 buildInputs = [ pytest ]; 13 14 propagatedBuildInputs = [ aiohttp ]; 15 16 # There are no tests 17 doCheck = false; 18 19 meta = with lib; { 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 ]; 24 }; 25}