1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 tornado, 6}: 7 8buildPythonPackage rec { 9 pname = "sockjs-tornado"; 10 version = "1.0.7"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "02ff25466b3a46b1a7dbe477340b042770ac078de7ea475a6285a28a75eb1fab"; 16 }; 17 18 propagatedBuildInputs = [ tornado ]; 19 20 meta = with lib; { 21 homepage = "https://github.com/mrjoes/sockjs-tornado/"; 22 description = "SockJS python server implementation on top of Tornado framework"; 23 license = licenses.mit; 24 maintainers = [ ]; 25 }; 26}