about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sockjs-tornado/default.nix
blob: a74c40486fc1534cb86c80194a9420ab7cb45b01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi, tornado }:

buildPythonPackage rec {
  pname = "sockjs-tornado";
  version = "1.0.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ec12b0c37723b0aac56610fb9b6aa68390720d0c9c2a10461df030c3a1d9af95";
  };

  propagatedBuildInputs = [ tornado ];

  meta = with lib; {
    homepage = "https://github.com/mrjoes/sockjs-tornado/";
    description = "SockJS python server implementation on top of Tornado framework";
    license = licenses.mit;
    maintainers = with maintainers; [ abbradar ];
  };
}