{ lib, buildPythonPackage, fetchPypi, hatchling, ptyprocess, tornado, pytest-timeout, pytestCheckHook, }: buildPythonPackage rec { pname = "terminado"; version = "0.18.1"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-3gnyxLhd5HZfdxRoj/9X0+dbrR+Qm1if3ogEYMdT/S4="; }; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ ptyprocess tornado ]; pythonImportsCheck = [ "terminado" ]; __darwinAllowLocalNetworking = true; nativeCheckInputs = [ pytest-timeout pytestCheckHook ]; pytestFlags = [ "-Wignore::pytest.PytestUnraisableExceptionWarning" ]; meta = { description = "Terminals served by Tornado websockets"; homepage = "https://github.com/jupyter/terminado"; license = lib.licenses.bsd2; maintainers = [ ]; }; }