mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-28 19:24:45 +00:00
49 lines
991 B
Nix
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 ];
|
|
};
|
|
})
|