My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/terminado/default.nix

46 lines
758 B

{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, ptyprocess
, tornado
, pytest-timeout
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "terminado";
version = "0.15.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-q07u3M/MHmE0v+6GEGr5CFLGnWAohOo6Hoym1Ehum/4=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
ptyprocess
tornado
];
pythonImportsCheck = [
"terminado"
];
checkInputs = [
pytest-timeout
pytestCheckHook
];
meta = with lib; {
description = "Terminals served by Tornado websockets";
homepage = "https://github.com/jupyter/terminado";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}