1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5, aiohttp
6, async_generator
7}:
8
9buildPythonPackage rec {
10 pname = "pytest-sanic";
11 version = "1.1.2";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "61a60e1b0456b2ceaeeb7173783f3450332c3609017fb6b18176b307f7186d3a";
16 };
17
18 propagatedBuildInputs = [
19 pytest
20 aiohttp
21 async_generator
22 ];
23
24 # circular dependency on sanic
25 doCheck = false;
26
27 meta = with lib; {
28 description = "A pytest plugin for Sanic";
29 homepage = https://github.com/yunstanford/pytest-sanic/;
30 license = licenses.asl20;
31 maintainers = [ maintainers.costrouc ];
32 };
33}