depot/third_party/nixpkgs/pkgs/development/python-modules/ipykernel/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

72 lines
1.4 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
callPackage,
fetchPypi,
hatchling,
pythonOlder,
appnope,
comm,
ipython,
jupyter-client,
jupyter-core,
matplotlib-inline,
nest-asyncio,
packaging,
psutil,
pyzmq,
tornado,
traitlets,
# Reverse dependency
sage,
}:
buildPythonPackage rec {
pname = "ipykernel";
version = "6.29.5";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-8JOiLEpA+IKPjjMKnCl8uT3KsTvZZ43tbejlz4HFYhU=";
};
# debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
pythonRemoveDeps = [ "debugpy" ];
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
comm
ipython
jupyter-client
jupyter-core
matplotlib-inline
nest-asyncio
packaging
psutil
pyzmq
tornado
traitlets
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ appnope ];
# check in passthru.tests.pytest to escape infinite recursion with ipyparallel
doCheck = false;
passthru.tests = {
pytest = callPackage ./tests.nix { };
inherit sage;
};
meta = {
description = "IPython Kernel for Jupyter";
homepage = "https://ipython.org/";
changelog = "https://github.com/ipython/ipykernel/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = lib.teams.jupyter.members;
};
}