python3Packages.python-socketio: enable tests

This commit is contained in:
Fabian Affolter 2021-01-06 08:54:30 +01:00
parent 9630d39b88
commit 8e586c90a8
1 changed files with 7 additions and 5 deletions

View File

@ -1,9 +1,10 @@
{ lib
, bidict
, buildPythonPackage
, fetchFromGitHub
, bidict
, python-engineio
, mock
, pytestCheckHook
, python-engineio
}:
buildPythonPackage rec {
@ -22,9 +23,10 @@ buildPythonPackage rec {
python-engineio
];
checkInputs = [ mock ];
# tests only on github, but latest github release not tagged
doCheck = false;
checkInputs = [
mock
pytestCheckHook
];
meta = with lib; {
description = "Socket.IO server";