summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-aiohttp/default.nix
blob: f2491bd571c1f733de23d2c512d5a61911647cab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildPythonPackage, fetchPypi, pytest, aiohttp }:

buildPythonPackage rec {
  pname = "pytest-aiohttp";
  version = "0.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
  };

  propagatedBuildInputs = [ pytest aiohttp ];

  # There are no tests
  doCheck = false;

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