Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, tornado }: 2 3buildPythonPackage rec { 4 pname = "sockjs-tornado"; 5 version = "1.0.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "ec12b0c37723b0aac56610fb9b6aa68390720d0c9c2a10461df030c3a1d9af95"; 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}