python3.pkgs.janus: fix build
This commit is contained in:
parent
8ce5334899
commit
81fb54a8c1
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pytest, pythonOlder }:
|
||||
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "janus";
|
||||
|
@ -11,7 +11,10 @@ buildPythonPackage rec {
|
|||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkInputs = [ pytest-asyncio pytestCheckHook ];
|
||||
|
||||
# also fails upstream: https://github.com/aio-libs/janus/pull/258
|
||||
disabledTests = [ "test_format" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mixed sync-async queue";
|
||||
|
|
Loading…
Reference in a new issue