23 buildPythonPackage rec {
28 disabled = pythonOlder "3.8";
31 inherit pname version;
32 hash = "sha256-PUQHAGD5R1rCCSt2ASP63xBdLiSTwkhItmkafE9Cr1w=";
35 # debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
37 sed -i "/debugpy/d" pyproject.toml
44 propagatedBuildInputs = [
57 ] ++ lib.optionals stdenv.isDarwin [
61 # check in passthru.tests.pytest to escape infinite recursion with ipyparallel
65 pytest = callPackage ./tests.nix { };
69 description = "IPython Kernel for Jupyter";
70 homepage = "https://ipython.org/";
71 changelog = "https://github.com/ipython/ipykernel/releases/tag/v${version}";
72 license = lib.licenses.bsd3;
73 maintainers = with lib.maintainers; [ fridh ] ++ lib.teams.jupyter.members;