depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-aiohttp/default.nix
Default email bba55970ba Project import generated by Copybara.
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
2021-04-05 17:23:46 +02:00

25 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 ];
};
}