python311Packages.ipykernel: 6.27.1 -> 6.28.0

Changelog: https://github.com/ipython/ipykernel/releases/tag/v6.28.0
This commit is contained in:
Gaetan Lepage 2023-12-28 23:32:50 +01:00
parent e613b63475
commit 7e75a23d1f

View file

@ -22,14 +22,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "ipykernel"; pname = "ipykernel";
version = "6.27.1"; version = "6.28.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-fV1ZS2aQZUtNKZ7bpehy3Be7c5ao0GCcl8t7ihxgXeY="; hash = "sha256-acEUA9Jt5p3wIiWRb5FrN+pLmvQX2gqMgn+EMo2I5fM=";
}; };
# debugpy is optional, see https://github.com/ipython/ipykernel/pull/767 # debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
@ -68,6 +68,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "IPython Kernel for Jupyter"; description = "IPython Kernel for Jupyter";
homepage = "https://ipython.org/"; homepage = "https://ipython.org/";
changelog = "https://github.com/ipython/ipykernel/releases/tag/v${version}";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ] ++ lib.teams.jupyter.members; maintainers = with lib.maintainers; [ fridh ] ++ lib.teams.jupyter.members;
}; };