summary refs log tree commit diff
path: root/pkgs/development/python-modules/gevent-websocket/default.nix
blob: 431a0c09a30c3527061736a68e94b54a8c480fdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, gevent
, gunicorn
}:

buildPythonPackage rec {
  pname = "gevent-websocket";
  version = "0.10.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1c2zv2rahp1gil3cj66hfsqgy0n35hz9fny3ywhr2319d0lz7bky";
  };

  propagatedBuildInputs = [ gevent gunicorn ];

  meta = with lib; {
    homepage = "https://www.gitlab.com/noppo/gevent-websocket";
    description = "Websocket handler for the gevent pywsgi server, a Python network library";
    license = licenses.asl20;
  };

}