emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / terminado / default.nix
blob7773844c2febc8ab194737b21d10dcd4684ee900
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   hatchling,
6   ptyprocess,
7   tornado,
8   pytest-timeout,
9   pytestCheckHook,
12 buildPythonPackage rec {
13   pname = "terminado";
14   version = "0.18.1";
15   format = "pyproject";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-3gnyxLhd5HZfdxRoj/9X0+dbrR+Qm1if3ogEYMdT/S4=";
20   };
22   nativeBuildInputs = [ hatchling ];
24   propagatedBuildInputs = [
25     ptyprocess
26     tornado
27   ];
29   pythonImportsCheck = [ "terminado" ];
31   __darwinAllowLocalNetworking = true;
33   nativeCheckInputs = [
34     pytest-timeout
35     pytestCheckHook
36   ];
38   meta = with lib; {
39     description = "Terminals served by Tornado websockets";
40     homepage = "https://github.com/jupyter/terminado";
41     license = licenses.bsd2;
42     maintainers = [ ];
43   };