11 buildPythonPackage rec {
12 pname = "gevent-socketio";
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-UzlKuT+9hNnbuyvvhTSfalA7/FPYapvoZTJQ8aBBKv8=";
23 nativeBuildInputs = [ versiontools ];
25 buildInputs = [ gevent-websocket ];
27 propagatedBuildInputs = [ gevent ];
29 # Tests are not ported to Python 3
32 pythonImportsCheck = [ "socketio" ];
35 description = "SocketIO server based on the Gevent pywsgi server";
36 homepage = "https://github.com/abourget/gevent-socketio";
37 license = licenses.bsd0;