Merge pull request #277427 from GaetanLepage/ipykernel

python311Packages.ipykernel: 6.27.1 -> 6.28.0
This commit is contained in:
OTABI Tomoya 2023-12-29 18:04:43 +09:00 committed by GitHub
commit 51124087fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,14 +22,14 @@
buildPythonPackage rec {
pname = "ipykernel";
version = "6.27.1";
version = "6.28.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-fV1ZS2aQZUtNKZ7bpehy3Be7c5ao0GCcl8t7ihxgXeY=";
hash = "sha256-acEUA9Jt5p3wIiWRb5FrN+pLmvQX2gqMgn+EMo2I5fM=";
};
# debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
@ -68,6 +68,7 @@ buildPythonPackage rec {
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 = with lib.maintainers; [ fridh ] ++ lib.teams.jupyter.members;
};