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