1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5, aiohttp
6, async_generator
7}:
8
9buildPythonPackage rec {
10 pname = "pytest-sanic";
11 version = "1.6.1";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "99e02c28cfa18a0a9af0cd151dddf0eca373279b9bac808733746f7ed7030ecc";
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}