1{ lib
2, buildPythonPackage
3, fetchPypi
4, gevent
5, gunicorn
6}:
7
8buildPythonPackage rec {
9 pname = "gevent-websocket";
10 version = "0.10.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1c2zv2rahp1gil3cj66hfsqgy0n35hz9fny3ywhr2319d0lz7bky";
15 };
16
17 propagatedBuildInputs = [ gevent gunicorn ];
18
19 # zero tests run
20 doCheck = false;
21
22 pythonImportsCheck = [ "geventwebsocket" ];
23
24 meta = with lib; {
25 homepage = "https://www.gitlab.com/noppo/gevent-websocket";
26 description = "Websocket handler for the gevent pywsgi server, a Python network library";
27 license = licenses.asl20;
28 maintainers = with maintainers; [ ];
29 };
30
31}