10 buildPythonPackage rec {
11 pname = "python-socketio";
14 src = fetchFromGitHub {
15 owner = "miguelgrinberg";
16 repo = "python-socketio";
18 sha256 = "0mpqr53mrdzk9ki24y1inpsfvjlvm7pvxf8q4d52m80i5pcd5v5q";
21 propagatedBuildInputs = [
31 pythonImportsCheck = [ "socketio" ];
34 description = "Python Socket.IO server and client";
36 Socket.IO is a lightweight transport protocol that enables real-time
37 bidirectional event-based communication between clients and a server.
39 homepage = "https://github.com/miguelgrinberg/python-socketio/";
40 license = with licenses; [ mit ];
41 maintainers = with maintainers; [ mic92 ];