nixpkgs/pkgs/development/python-modules/pytest-aiohttp/default.nix

26 lines
593 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest, aiohttp }:
buildPythonPackage rec {
pname = "pytest-aiohttp";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ aiohttp ];
# There are no tests
doCheck = false;
meta = with lib; {
homepage = "https://github.com/aio-libs/pytest-aiohttp/";
description = "Pytest plugin for aiohttp support";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}