pythonPackages.pytest-aiohttp: init at 0.3.0

This commit is contained in:
Robert Schütz 2018-01-27 00:47:49 +01:00
parent ab02f5400e
commit 9d392684c2
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, aiohttp }:
buildPythonPackage rec {
pname = "pytest-aiohttp";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
};
propagatedBuildInputs = [ pytest aiohttp ];
meta = with stdenv.lib; {
homepage = https://github.com/aio-libs/pytest-aiohttp/;
description = "Pytest plugin for aiohttp support";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -3217,6 +3217,8 @@ in {
pytest-asyncio = callPackage ../development/python-modules/pytest-asyncio { };
pytest-aiohttp = callPackage ../development/python-modules/pytest-aiohttp { };
pytestcache = buildPythonPackage rec {
name = "pytest-cache-1.0";
src = pkgs.fetchurl {