Files
nixpkgs/pkgs/development/python-modules/jupyter-client/default.nix
T
Martin Weinelt 93e0ad723c python3Packages.jupyter-client: 8.6.3 -> 8.8.0
https://github.com/jupyter/jupyter_client/blob/v8.8.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:22 +01:00

47 lines
914 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jupyter-core,
hatchling,
python-dateutil,
pyzmq,
tornado,
traitlets,
}:
buildPythonPackage rec {
pname = "jupyter-client";
version = "8.8.0";
pyproject = true;
src = fetchPypi {
pname = "jupyter_client";
inherit version;
hash = "sha256-1VaBFBmk8tlshprzToVOPwWbfMLW0Bqc2chcJnaRvj4=";
};
build-system = [ hatchling ];
dependencies = [
jupyter-core
python-dateutil
pyzmq
tornado
traitlets
];
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${version}/CHANGELOG.md";
license = lib.licenses.bsd3;
teams = [ lib.teams.jupyter ];
};
}