Files
2026-08-25 13:09:44 +02:00

49 lines
991 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jupyter-core,
hatchling,
python-dateutil,
pyzmq,
tornado,
traitlets,
typing-extensions,
}:
buildPythonPackage (finalAttrs: {
pname = "jupyter-client";
version = "8.9.1";
pyproject = true;
src = fetchPypi {
pname = "jupyter_client";
inherit (finalAttrs) version;
hash = "sha256-pY9zDdnnKLoWuh1i68z3/+Hrvbzk6Vz66UG3Mhrh9Po=";
};
build-system = [ hatchling ];
dependencies = [
jupyter-core
python-dateutil
pyzmq
tornado
traitlets
typing-extensions
];
pythonImportsCheck = [ "jupyter_client" ];
# Circular dependency with ipykernel
doCheck = false;
meta = {
description = "Jupyter protocol implementation and client libraries";
homepage = "https://github.com/jupyter/jupyter_client";
changelog = "https://github.com/jupyter/jupyter_client/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.bsd3;
teams = [ lib.teams.jupyter ];
};
})