1{ lib 2, buildPythonPackage 3, fetchPypi 4, numpy 5}: 6 7buildPythonPackage rec { 8 version = "0.10.0"; 9 pname = "websockify"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "6c4cc1bc132abb4a99834bcb1b4bd72f51d35a08d08093a817646ecc226ac44e"; 14 }; 15 16 propagatedBuildInputs = [ numpy ]; 17 18 # Ran 0 tests in 0.000s 19 doCheck = false; 20 21 pythonImportsCheck = [ "websockify" ]; 22 23 meta = with lib; { 24 description = "WebSockets support for any application/server"; 25 homepage = "https://github.com/kanaka/websockify"; 26 license = licenses.lgpl3; 27 maintainers = with maintainers; [ ]; 28 }; 29}