1{ lib, buildPythonPackage, fetchPypi, tornado }: 2 3buildPythonPackage rec { 4 pname = "sockjs-tornado"; 5 version = "1.0.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "4c4bcf33c8a238bbab37d01da769bcf89e74ef6019bfa76ddbcb4d682d47187e"; 10 }; 11 12 propagatedBuildInputs = [ tornado ]; 13 14 meta = with lib; { 15 homepage = https://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}