bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build
|
|
hatchling,
|
|
|
|
# runtime
|
|
terminado,
|
|
|
|
# tests
|
|
pytest-jupyter,
|
|
pytest-timeout,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
let
|
|
self = buildPythonPackage rec {
|
|
pname = "jupyter-server-terminals";
|
|
version = "0.5.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jupyter-server";
|
|
repo = "jupyter_server_terminals";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-af7jBscGkbekXgfDxwAfrJSY1uEuIGfzzSsjaPdlYcY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
propagatedBuildInputs = [ terminado ];
|
|
|
|
doCheck = false; # infinite recursion
|
|
|
|
nativeCheckInputs = [
|
|
pytest-jupyter
|
|
pytest-timeout
|
|
pytestCheckHook
|
|
] ++ pytest-jupyter.optional-dependencies.server;
|
|
|
|
passthru.tests = {
|
|
check = self.overridePythonAttrs (_: {
|
|
doCheck = true;
|
|
});
|
|
};
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/jupyter-server/jupyter_server_terminals/releases/tag/v${version}";
|
|
description = "Jupyter Server Extension Providing Support for Terminals";
|
|
homepage = "https://github.com/jupyter-server/jupyter_server_terminals";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
};
|
|
in
|
|
self
|