1{ lib, buildPythonPackage, fetchurl, tornado }:
2
3buildPythonPackage rec {
4 name = "sockjs-tornado-${version}";
5 version = "1.0.3";
6
7 src = fetchurl {
8 url = "mirror://pypi/s/sockjs-tornado/${name}.tar.gz";
9 sha256 = "16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd";
10 };
11
12 propagatedBuildInputs = [ tornado ];
13
14 meta = with lib; {
15 homepage = http://github.com/mrjoes/sockjs-tornado/;
16 description = "SockJS python server implementation on top of Tornado framework";
17 license = licenses.mit;
18 maintainers = with maintainers; [ abbradar ];
19 };
20}