python3Packages.flask-socketio: enable tests

This commit is contained in:
Fabian Affolter 2021-01-06 09:11:34 +01:00
parent 29dd4e2269
commit 328040d127

View File

@ -1,9 +1,10 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, coverage
, fetchFromGitHub , fetchFromGitHub
, flask , flask
, pytestCheckHook
, python-socketio , python-socketio
, coverage
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -22,9 +23,10 @@ buildPythonPackage rec {
python-socketio python-socketio
]; ];
checkInputs = [ coverage ]; checkInputs = [
# tests only on github, but lates release there is not tagged coverage
doCheck = false; pytestCheckHook
];
meta = with lib; { meta = with lib; {
description = "Socket.IO integration for Flask applications"; description = "Socket.IO integration for Flask applications";