blob: bb6d0119d268aee4d72eea999c4d11ec59285a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
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 = [ ];
};
}
|