python3Packages.python-socketio: enable tests
This commit is contained in:
parent
9630d39b88
commit
8e586c90a8
|
@ -1,9 +1,10 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, bidict
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, bidict
|
|
||||||
, python-engineio
|
|
||||||
, mock
|
, mock
|
||||||
|
, pytestCheckHook
|
||||||
|
, python-engineio
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -22,9 +23,10 @@ buildPythonPackage rec {
|
||||||
python-engineio
|
python-engineio
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [ mock ];
|
checkInputs = [
|
||||||
# tests only on github, but latest github release not tagged
|
mock
|
||||||
doCheck = false;
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Socket.IO server";
|
description = "Socket.IO server";
|
||||||
|
|
Loading…
Reference in New Issue