Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 27 lines 540 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, ptyprocess 5, tornado 6}: 7 8buildPythonPackage rec { 9 pname = "terminado"; 10 version = "0.8.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "4804a774f802306a7d9af7322193c5390f1da0abb429e082a10ef1d46e6fb2c2"; 15 }; 16 17 propagatedBuildInputs = [ ptyprocess tornado ]; 18 19 # test_max_terminals fails 20 doCheck = false; 21 22 meta = with lib; { 23 description = "Terminals served by Tornado websockets"; 24 homepage = https://github.com/jupyter/terminado; 25 license = licenses.bsd2; 26 }; 27}