2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytest, aiohttp }:
|
2018-01-27 00:47:49 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-aiohttp";
|
|
|
|
version = "0.3.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
|
|
|
|
};
|
|
|
|
|
2021-03-12 23:20:19 +01:00
|
|
|
buildInputs = [ pytest ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ aiohttp ];
|
2018-01-27 00:47:49 +01:00
|
|
|
|
2018-02-02 15:44:44 +01:00
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/aio-libs/pytest-aiohttp/";
|
2018-01-27 00:47:49 +01:00
|
|
|
description = "Pytest plugin for aiohttp support";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|