about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sockjs-tornado/default.nix
blob: c7235468370f25864a0c4a5836d7e3376ca9e38b (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.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02ff25466b3a46b1a7dbe477340b042770ac078de7ea475a6285a28a75eb1fab";
  };

  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 ];
  };
}