{ lib , buildPythonPackage , fetchPypi , flask , python-socketio , coverage }: buildPythonPackage rec { pname = "Flask-SocketIO"; version = "4.3.0"; src = fetchPypi { inherit pname version; sha256 = "7f9b54ac9cd92e28a657c58f51943d97e76b988840c8795784e7b2bafb13103f"; }; propagatedBuildInputs = [ flask python-socketio ]; checkInputs = [ coverage ]; # tests only on github, but lates release there is not tagged doCheck = false; meta = with lib; { description = "Socket.IO integration for Flask applications"; homepage = "https://github.com/miguelgrinberg/Flask-SocketIO/"; license = licenses.mit; maintainers = [ maintainers.mic92 ]; }; }