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