depot/third_party/nixpkgs/pkgs/development/python-modules/jupyter-client/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

49 lines
865 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, entrypoints
, jupyter_core
, hatchling
, nest-asyncio
, python-dateutil
, pyzmq
, tornado
, traitlets
, isPyPy
, py
}:
buildPythonPackage rec {
pname = "jupyter_client";
version = "7.3.5";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PFhGahuNVdugvzzgg05PW3dguvmNHXPbCt1vGd6ezR0=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
entrypoints
jupyter_core
nest-asyncio
python-dateutil
pyzmq
tornado
traitlets
] ++ lib.optional isPyPy py;
# Circular dependency with ipykernel
doCheck = false;
meta = {
description = "Jupyter protocol implementation and client libraries";
homepage = "https://jupyter.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}