pythonPackages.pytest-aiohttp: init at 0.3.0
This commit is contained in:
parent
ab02f5400e
commit
9d392684c2
20
pkgs/development/python-modules/pytest-aiohttp/default.nix
Normal file
20
pkgs/development/python-modules/pytest-aiohttp/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3217,6 +3217,8 @@ in {
|
|||||||
|
|
||||||
pytest-asyncio = callPackage ../development/python-modules/pytest-asyncio { };
|
pytest-asyncio = callPackage ../development/python-modules/pytest-asyncio { };
|
||||||
|
|
||||||
|
pytest-aiohttp = callPackage ../development/python-modules/pytest-aiohttp { };
|
||||||
|
|
||||||
pytestcache = buildPythonPackage rec {
|
pytestcache = buildPythonPackage rec {
|
||||||
name = "pytest-cache-1.0";
|
name = "pytest-cache-1.0";
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
|
Loading…
Reference in New Issue
Block a user