Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, numpy 5}: 6 7buildPythonPackage rec { 8 version = "0.8.0"; 9 pname = "websockify"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "547d3d98c5081f2dc2872a2e4a3aef33e0ee5141d5f6209204aab2f4a41548d2"; 14 }; 15 16 propagatedBuildInputs = [ numpy ]; 17 18 meta = with stdenv.lib; { 19 description = "WebSockets support for any application/server"; 20 homepage = https://github.com/kanaka/websockify; 21 license = licenses.lgpl3; 22 }; 23 24}