1{ stdenv, 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 propagatedBuildInputs = [ pytest aiohttp ];
13
14 # There are no tests
15 doCheck = false;
16
17 meta = with stdenv.lib; {
18 homepage = https://github.com/aio-libs/pytest-aiohttp/;
19 description = "Pytest plugin for aiohttp support";
20 license = licenses.asl20;
21 maintainers = with maintainers; [ dotlambda ];
22 };
23}