1{ lib, buildPythonPackage, fetchPypi, tornado }: 2 3buildPythonPackage rec { 4 pname = "sockjs-tornado"; 5 version = "1.0.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "02ff25466b3a46b1a7dbe477340b042770ac078de7ea475a6285a28a75eb1fab"; 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}