Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pytest-aiohttp / default.nix
blob4e45477c8caa5b653ef7abb60be661b6bd2ccae0
1 { lib, buildPythonPackage, fetchPypi, pytest, aiohttp }:
3 buildPythonPackage rec {
4   pname = "pytest-aiohttp";
5   version = "0.3.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
10   };
12   buildInputs = [ pytest ];
14   propagatedBuildInputs = [ aiohttp ];
16   # There are no tests
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/aio-libs/pytest-aiohttp/";
21     description = "Pytest plugin for aiohttp support";
22     license = licenses.asl20;
23     maintainers = with maintainers; [ dotlambda ];
24   };