1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio }:
3 buildPythonPackage rec {
9 sha256 = "4712e0ef75711fe5947c2db855bc96221a9a03641b52e5ae8e25c2b705dd1d0c";
12 disabled = pythonOlder "3.6";
14 checkInputs = [ pytest-asyncio pytestCheckHook ];
16 # also fails upstream: https://github.com/aio-libs/janus/pull/258
17 disabledTests = [ "test_format" ];
20 description = "Mixed sync-async queue";
21 homepage = "https://github.com/aio-libs/janus";
22 license = licenses.asl20;
23 maintainers = [ maintainers.simonchatts ];