From 969116d429e474c456907b07203dea7e4d49ac60 Mon Sep 17 00:00:00 2001 From: dkwo Date: Thu, 3 Feb 2022 13:51:55 +0100 Subject: [PATCH 01/15] python3-defusedxml: update to 0.7.1 --- srcpkgs/python3-defusedxml/template | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-defusedxml/template b/srcpkgs/python3-defusedxml/template index 7224da834eff..90dc454d120d 100644 --- a/srcpkgs/python3-defusedxml/template +++ b/srcpkgs/python3-defusedxml/template @@ -1,7 +1,8 @@ # Template file for 'python3-defusedxml' pkgname=python3-defusedxml -version=0.6.0 -revision=6 +version=0.7.1 +revision=1 +wrksrc="defusedxml-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" @@ -10,7 +11,7 @@ maintainer="Orphaned " license="Python-2.0" homepage="https://github.com/tiran/defusedxml" distfiles="${PYPI_SITE}/d/defusedxml/defusedxml-${version}.tar.gz" -checksum=f684034d135af4c6cbb949b8a4d2ed61634515257a67299e5f940fbaa34377f5 +checksum=1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69 post_install() { vlicense LICENSE From 18a0fed768cf7db32149a1ef850e6d686e565ac7 Mon Sep 17 00:00:00 2001 From: dkwo Date: Fri, 11 Nov 2022 16:30:42 -0500 Subject: [PATCH 02/15] python3-httplib2: update to 0.21.0 --- srcpkgs/python3-httplib2/template | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/srcpkgs/python3-httplib2/template b/srcpkgs/python3-httplib2/template index eb714b59d0bf..c9a6527ed2e6 100644 --- a/srcpkgs/python3-httplib2/template +++ b/srcpkgs/python3-httplib2/template @@ -1,26 +1,30 @@ # Template file for 'python3-httplib2' pkgname=python3-httplib2 -version=0.18.1 -revision=5 -create_wrksrc=yes -build_wrksrc="httplib2-${version}" +version=0.21.0 +revision=1 +wrksrc="httplib2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" -depends="python3 ca-certificates" +depends="python3 ca-certificates python3-parsing" +checkdepends="python3-pytest python3-pytest-cov python3-pytest-timeout + python3-cryptography python3-flake8 python3-six python3-future" short_desc="Comprehensive HTTP client library (Python3)" maintainer="Orphaned " license="MIT" homepage="https://github.com/httplib2/httplib2" changelog="https://raw.githubusercontent.com/httplib2/httplib2/master/CHANGELOG" -distfiles="${PYPI_SITE}/h/httplib2/httplib2-${version}.tar.gz - https://raw.githubusercontent.com/httplib2/httplib2/master/LICENSE>LICENSE.txt" -checksum="8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3 - 589eec38f72df2be203711d3b8cbece9b908c5e7ff00bc3cab7f63bae9e366b4" +distfiles="${PYPI_SITE}/h/httplib2/httplib2-${version}.tar.gz" +checksum=fc144f091c7286b82bec71bdbd9b27323ba709cc612568d3000893bfd9cb4b34 + +do_check() { + # https://github.com/httplib2/httplib2/issues/221 + PYTHONPATH="$PWD/build/lib" python3 -m pytest tests/ -k 'not test_client_cert_password_verified' +} post_install() { # use system ca certificates rm -rf ${DESTDIR}/${py3_sitelib}/httplib2/cacerts.txt ln -sf /etc/ssl/certs.pem ${DESTDIR}/${py3_sitelib}/httplib2/cacerts.txt - vlicense ../LICENSE.txt + vlicense LICENSE } From e4443b287c5a76cf6304a8b91317edf82ad85c9d Mon Sep 17 00:00:00 2001 From: dkwo Date: Thu, 3 Feb 2022 14:04:52 +0100 Subject: [PATCH 03/15] python3-jupyter_client: update to 7.4.5 --- srcpkgs/python3-jupyter_client/template | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/srcpkgs/python3-jupyter_client/template b/srcpkgs/python3-jupyter_client/template index 5145aba67640..a1a940856263 100644 --- a/srcpkgs/python3-jupyter_client/template +++ b/srcpkgs/python3-jupyter_client/template @@ -1,18 +1,18 @@ # Template file for 'python3-jupyter_client' pkgname=python3-jupyter_client -# delay 6.2 until jupyter/jupyter_console#241 is fixed -version=6.1.12 -revision=3 -build_style=python3-module -hostmakedepends="python3-setuptools" +version=7.4.5 +revision=1 +wrksrc="jupyter_client-${version}" +build_style=python3-pep517 +hostmakedepends="python3-flit_core hatchling" depends="python3-traitlets python3-jupyter_core python3-pyzmq - python3-dateutil python3-tornado python3-nest_asyncio" + python3-dateutil python3-tornado python3-nest_asyncio python3-entrypoints" short_desc="Jupyter protocol client APIs" maintainer="Alessio Sergi " license="BSD-3-Clause" homepage="https://github.com/jupyter/jupyter_client" distfiles="${PYPI_SITE}/j/jupyter_client/jupyter_client-${version}.tar.gz" -checksum=c4bca1d0846186ca8be97f4d2fa6d2bae889cce4892a167ffa1ba6bd1f73e782 +checksum=63eae06c40e1f2d9afa14447511fddc065c95dea3f2491fda2acccf91221954a conflicts="python-jupyter_client<=5.2.4_2" # checks create a cycle with python3-jupyter_core and python3-ipython_ipykernel make_check=no From edca66ea5115eac452383ce33fc935886b1e7b74 Mon Sep 17 00:00:00 2001 From: dkwo Date: Thu, 3 Feb 2022 14:06:12 +0100 Subject: [PATCH 04/15] python3-jupyter_core: update to 5.0.0 --- srcpkgs/python3-jupyter_core/template | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template index 6bc6f88e5f71..e77a1645f3bc 100644 --- a/srcpkgs/python3-jupyter_core/template +++ b/srcpkgs/python3-jupyter_core/template @@ -1,16 +1,17 @@ # Template file for 'python3-jupyter_core' pkgname=python3-jupyter_core -version=4.7.1 -revision=3 -build_style=python3-module -hostmakedepends="python3-setuptools" +version=5.0.0 +revision=1 +wrksrc="jupyter_core-${version}" +build_style=python3-pep517 +hostmakedepends="python3-flit_core hatchling" depends="python3-traitlets" short_desc="Jupyter core package" maintainer="Alessio Sergi " license="BSD-3-Clause" homepage="https://jupyter.org" distfiles="${PYPI_SITE}/j/jupyter_core/jupyter_core-${version}.tar.gz" -checksum=79025cb3225efcd36847d0840f3fc672c0abd7afd0de83ba8a1d3837619122b4 +checksum=4ed68b7c606197c7e344a24b7195eef57898157075a69655a886074b6beb7043 conflicts="python-jupyter_core<=4.4.0_3" # checks create a cycle with python3-jypter_client and python3-ipython_ipykernel make_check=no From 8e090273c03b46f28c0cf3f7fcefd05e81ba28dd Mon Sep 17 00:00:00 2001 From: dkwo Date: Thu, 3 Feb 2022 14:17:21 +0100 Subject: [PATCH 05/15] python3-soupsieve: update to 2.3.2 --- srcpkgs/python3-soupsieve/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-soupsieve/template b/srcpkgs/python3-soupsieve/template index 81c62d9a0c4c..800821ba6a2a 100644 --- a/srcpkgs/python3-soupsieve/template +++ b/srcpkgs/python3-soupsieve/template @@ -1,9 +1,9 @@ # Template file for 'python3-soupsieve' pkgname=python3-soupsieve -version=1.9.5 -revision=9 -build_style=python3-module -hostmakedepends="python3-setuptools" +version=2.3.2 +revision=1 +build_style=python3-pep517 +hostmakedepends="hatchling" depends="python3" checkdepends="python3-pytest python3-lxml python3-html5lib python3-BeautifulSoup4" @@ -12,7 +12,7 @@ maintainer="Aluísio Augusto Silva Gonçalves " license="MIT" homepage="https://facelessuser.github.io/soupsieve/" distfiles="${PYPI_SITE}/s/soupsieve/soupsieve-${version}.tar.gz" -checksum=e2c1c5dee4a1c36bcb790e0fabd5492d874b8ebd4617622c4f6a731701060dda +checksum=0bcc6d7432153063e3df09c3ac9442af3eba488715bfcad6a4c38ccb2a523124 post_install() { vlicense LICENSE.md From ead1363bd9b276568979765ea28b2a5dcc4fcf71 Mon Sep 17 00:00:00 2001 From: dkwo Date: Thu, 3 Feb 2022 14:20:35 +0100 Subject: [PATCH 06/15] python3-terminado: update to 0.17.0 --- srcpkgs/python3-terminado/template | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-terminado/template b/srcpkgs/python3-terminado/template index 46b4599264eb..808305918c6e 100644 --- a/srcpkgs/python3-terminado/template +++ b/srcpkgs/python3-terminado/template @@ -1,9 +1,10 @@ # Template file for 'python3-terminado' pkgname=python3-terminado -version=0.9.4 -revision=3 -build_style=python3-module -hostmakedepends="python3-setuptools" +version=0.17.0 +revision=1 +wrksrc="terminado-${version}" +build_style=python3-pep517 +hostmakedepends="python3-flit_core python3-tornado hatchling" depends="python3-ptyprocess python3-tornado" checkdepends="python3-pytest $depends" short_desc="Terminals served to term.js using Tornado websockets (Python3)" @@ -11,7 +12,7 @@ maintainer="Orphaned " license="BSD-2-Clause" homepage="https://github.com/takluyver/terminado" distfiles="${PYPI_SITE}/t/terminado/terminado-${version}.tar.gz" -checksum=9a7dbcfbc2778830eeb70261bf7aa9d98a3eac8631a3afe3febeb57c12f798be +checksum=520feaa3aeab8ad64a69ca779be54be9234edb2d0d6567e76c93c2c9a4e6e43f post_install() { vlicense LICENSE From c4fd13e35168bd765b724c7a22eb0aad36651180 Mon Sep 17 00:00:00 2001 From: dkwo Date: Sun, 13 Feb 2022 11:34:43 +0100 Subject: [PATCH 07/15] python3-jupyter_server: update to 1.23.1 --- srcpkgs/python3-jupyter_server/template | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-jupyter_server/template b/srcpkgs/python3-jupyter_server/template index 1679c628ff17..132c9ba78ed2 100644 --- a/srcpkgs/python3-jupyter_server/template +++ b/srcpkgs/python3-jupyter_server/template @@ -1,20 +1,25 @@ # Template file for 'python3-jupyter_server' pkgname=python3-jupyter_server -version=1.13.4 -revision=2 +version=1.23.1 +revision=1 +wrksrc="jupyter_server-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-anyio python3-jupyter_client python3-jupyter_nbformat python3-jupyter_nbconvert python3-terminado python3-prometheus_client python3-traitlets python3-tornado python3-Jinja2 python3-send2trash python3-websocket-client" +checkdepends="${depends} python3-argon2 python3-packaging + python3-coverage python3-pytest-mock python3-requests + python3-pytest python3-pytest-timeout python3-pytest-asyncio" short_desc="Backend to Jupyter web applications" maintainer="dkwo " license="BSD-3-Clause" homepage="https://jupyter.org" +changelog="https://raw.githubusercontent.com/jupyter-server/jupyter_server/main/CHANGELOG.md" distfiles="${PYPI_SITE}/j/jupyter-server/jupyter_server-${version}.tar.gz" -checksum=5fb5a219385338b1d13a013a68f54688b6a69ecff4e757fd230e27ecacdbf212 -# Tarball defines no tests +checksum=cee48d9d96cecd0f94b7cb41ecd4f0ab05b01643769f61c5d397b7873bc9a1e2 +# missing pytest-tornasync, pytest-console-scripts make_check=no post_install() { From 583badbb68634016bb0d56bd49c35d61e377ddaf Mon Sep 17 00:00:00 2001 From: dkwo Date: Sun, 13 Feb 2022 11:34:59 +0100 Subject: [PATCH 08/15] jupyterlab: update to 3.5.0 --- srcpkgs/jupyterlab/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template index bf9ab2c293da..d10fe2436e23 100644 --- a/srcpkgs/jupyterlab/template +++ b/srcpkgs/jupyterlab/template @@ -1,7 +1,7 @@ # Template file for 'jupyterlab' pkgname=jupyterlab -version=3.2.8 -revision=3 +version=3.5.0 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-jupyterlab_server nodejs python3-nbclassic @@ -11,7 +11,7 @@ maintainer="dkwo " license="custom:jupyterlab" homepage="https://jupyter.org" distfiles="${PYPI_SITE}/j/jupyterlab/jupyterlab-${version}.tar.gz" -checksum=5e4e99868c4f385372686767781408acbb9004b690b198b45597ba869802334b +checksum=e02556c8ea1b386963c4b464e4618aee153c5416b07ab481425c817a033323a2 # Tests require unpackaged dependencies make_check=no From 46d7d96f28c7ad0b1a79e1b9ff950f4ee168f8fb Mon Sep 17 00:00:00 2001 From: dkwo Date: Mon, 21 Feb 2022 10:41:56 +0100 Subject: [PATCH 09/15] python3-nbclient: update to 0.7.0 --- srcpkgs/python3-nbclient/template | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-nbclient/template b/srcpkgs/python3-nbclient/template index 526b3ccec45e..e0a0b973d695 100644 --- a/srcpkgs/python3-nbclient/template +++ b/srcpkgs/python3-nbclient/template @@ -1,7 +1,8 @@ # Template file for 'python3-nbclient' pkgname=python3-nbclient -version=0.5.10 -revision=2 +version=0.7.0 +revision=1 +wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-traitlets python3-jupyter_client @@ -11,7 +12,7 @@ maintainer="dkwo " license="BSD-3-Clause" homepage="https://nbclient.readthedocs.io/en/latest/" distfiles="${PYPI_SITE}/n/nbclient/nbclient-${version}.tar.gz" -checksum=b5fdea88d6fa52ca38de6c2361401cfe7aaa7cd24c74effc5e489cec04d79088 +checksum=a1d844efd6da9bc39d2209bf996dbd8e07bf0f36b796edfabaa8f8a9ab77c3aa # Package might need to be installed for testing make_check=no From 4560e16c6dca89e41941270bd8541b8dcbce59ec Mon Sep 17 00:00:00 2001 From: dkwo Date: Fri, 11 Mar 2022 18:30:18 +0100 Subject: [PATCH 10/15] python3-traitlets: update to 5.5.0 --- srcpkgs/python3-traitlets/template | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template index 8667047b6603..a3e262476016 100644 --- a/srcpkgs/python3-traitlets/template +++ b/srcpkgs/python3-traitlets/template @@ -1,9 +1,10 @@ # Template file for 'python3-traitlets' pkgname=python3-traitlets -version=5.0.5 -revision=3 -build_style=python3-module -hostmakedepends="python3-setuptools" +version=5.5.0 +revision=1 +wrksrc="traitlets-${version}" +build_style=python3-pep517 +hostmakedepends="python3-flit_core hatchling" depends="python3-decorator python3-ipython_genutils python3-six" checkdepends="$depends python3-pytest" short_desc="Configuration system for Python applications" @@ -11,7 +12,7 @@ maintainer="Alessio Sergi " license="BSD-3-Clause" homepage="https://github.com/ipython/traitlets" distfiles="${PYPI_SITE}/t/traitlets/traitlets-${version}.tar.gz" -checksum=178f4ce988f69189f7e523337a3e11d91c786ded9360174a3d9ca83e79bc5396 +checksum=b122f9ff2f2f6c1709dab289a05555be011c87828e911c0cf4074b85cb780a79 do_check() { pytest From 6d8854c4f802f405754228202c3a398f9ec84c10 Mon Sep 17 00:00:00 2001 From: dkwo Date: Fri, 11 Mar 2022 18:30:45 +0100 Subject: [PATCH 11/15] python3-jupyter_console: update to 6.4.4 --- srcpkgs/python3-jupyter_console/template | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template index c3f533b4f149..f1130868d2f2 100644 --- a/srcpkgs/python3-jupyter_console/template +++ b/srcpkgs/python3-jupyter_console/template @@ -1,23 +1,24 @@ # Template file for 'python3-jupyter_console' pkgname=python3-jupyter_console -version=6.4.0 -revision=3 +version=6.4.4 +revision=1 +wrksrc="jupyter_console-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-ipython python3-ipython_ipykernel python3-jupyter_client - python3-prompt_toolkit python3-Pygments" + python3-prompt_toolkit python3-Pygments python3-traitlets" checkdepends="$depends python3-pytest" short_desc="Jupyter terminal console (Python3)" maintainer="Alessio Sergi " license="BSD-3-Clause" homepage="https://github.com/jupyter/jupyter_console" distfiles="${PYPI_SITE}/j/jupyter_console/jupyter_console-${version}.tar.gz" -checksum=242248e1685039cd8bff2c2ecb7ce6c1546eb50ee3b08519729e6e881aec19c7 +checksum=172f5335e31d600df61613a97b7f0352f2c8250bbd1092ef2d658f77249f89fb # alternatives will be a conflict conflicts="python-jupyter_console<=6.0.0_2" # Tests fail because stdin is not a terminal make_check=no post_install() { - vlicense COPYING.md LICENSE + vlicense LICENSE } From 713b0d6c0931c17f724fa332339e19f9c61301d6 Mon Sep 17 00:00:00 2001 From: dkwo Date: Fri, 11 Mar 2022 18:35:22 +0100 Subject: [PATCH 12/15] python3-nbclassic: update to 0.4.8 --- srcpkgs/python3-nbclassic/template | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-nbclassic/template b/srcpkgs/python3-nbclassic/template index 6e1db8ee8558..e73a15f66bb2 100644 --- a/srcpkgs/python3-nbclassic/template +++ b/srcpkgs/python3-nbclassic/template @@ -1,17 +1,19 @@ # Template file for 'python3-nbclassic' pkgname=python3-nbclassic -version=0.3.5 -revision=2 +version=0.4.8 +revision=1 +wrksrc=nbclassic-${version} build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-jupyter_notebook python3-jupyter_server" +checkdepends="${depends} python3-pytest python3-pytest-fixture-config python3-pytest-subtests" short_desc="Jupyter Notebook as a Jupyter Server Extension" maintainer="dkwo " license="BSD-3-Clause" homepage="https://jupyter.org" distfiles="${PYPI_SITE}/n/nbclassic/nbclassic-${version}.tar.gz" -checksum=99444dd63103af23c788d9b5172992f12caf8c3098dd5a35c787f0df31490c29 -# Tarball includes no tests +checksum=c74d8a500f8e058d46b576a41e5bc640711e1032cf7541dde5f73ea49497e283 +# missing fixtures: jp_create_notebook jp_fetch make_check=no conf_files="/etc/jupyter/jupyter_server_config.d/*.json" From 3db83f6564fd878a35ec1bd0a31df390efee796b Mon Sep 17 00:00:00 2001 From: dkwo Date: Wed, 23 Nov 2022 16:37:00 -0500 Subject: [PATCH 13/15] python3-anyio: update to 3.6.2 --- srcpkgs/python3-anyio/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-anyio/template b/srcpkgs/python3-anyio/template index 275e4c259b03..9b4d32025a01 100644 --- a/srcpkgs/python3-anyio/template +++ b/srcpkgs/python3-anyio/template @@ -1,7 +1,7 @@ # Template file for 'python3-anyio' pkgname=python3-anyio -version=3.5.0 -revision=2 +version=3.6.2 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-sniffio python3-idna" @@ -10,7 +10,7 @@ maintainer="dkwo " license="MIT" homepage="https://github.com/agronholm/anyio" distfiles="${PYPI_SITE}/a/anyio/anyio-${version}.tar.gz" -checksum=a0aeffe2fb1fdf374a8e4b471444f0f3ac4fb9f5a5b542b48824475e0042a5a6 +checksum=25ea0d673ae30af41a0c442f81cf3b38c7e79fdc7b60335a4c14e05eb0947421 # Tests not supported make_check=no From a43a94e4a0786b12d70767d023e909f4d28eaf31 Mon Sep 17 00:00:00 2001 From: dkwo Date: Mon, 5 Dec 2022 16:31:35 -0500 Subject: [PATCH 14/15] python3-tornado: update to 6.2 --- srcpkgs/python3-tornado/template | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-tornado/template b/srcpkgs/python3-tornado/template index 02909ef3e72d..48c9e57b0bdb 100644 --- a/srcpkgs/python3-tornado/template +++ b/srcpkgs/python3-tornado/template @@ -1,7 +1,7 @@ # Template file for 'python3-tornado' pkgname=python3-tornado -version=6.1 -revision=4 +version=6.2 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" @@ -11,7 +11,8 @@ maintainer="Orphaned " license="Apache-2.0" homepage="http://www.tornadoweb.org/" distfiles="${PYPI_SITE}/t/tornado/tornado-${version}.tar.gz" -checksum=33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791 +checksum=9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13 +make_check=no # tests failing, already with 6.1 pre_build() { # use system ca-certificates From 46cb593ec196159617890b2f406ff575f35d22f5 Mon Sep 17 00:00:00 2001 From: dkwo Date: Mon, 5 Dec 2022 17:54:19 -0500 Subject: [PATCH 15/15] python3-ipython_ipykernel: attempt to update to 6.17.1 --- srcpkgs/python3-ipython_ipykernel/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-ipython_ipykernel/template b/srcpkgs/python3-ipython_ipykernel/template index eb1dcad3dd27..c8af97335c56 100644 --- a/srcpkgs/python3-ipython_ipykernel/template +++ b/srcpkgs/python3-ipython_ipykernel/template @@ -1,9 +1,9 @@ # Template file for 'python3-ipython_ipykernel' pkgname=python3-ipython_ipykernel -version=5.5.4 -revision=3 -build_style=python3-module -hostmakedepends="python3-setuptools python3-ipython +version=6.17.1 +revision=1 +build_style=python3-pep517 +hostmakedepends="hatchling python3-ipython python3-jupyter_client python3-traitlets python3-tornado" depends="python3-ipython python3-traitlets python3-jupyter_client python3-tornado" short_desc="IPython kernel for Jupyter (Python3)" @@ -11,7 +11,7 @@ maintainer="Alessio Sergi " license="BSD-3-Clause" homepage="https://github.com/ipython/ipykernel" distfiles="${PYPI_SITE}/i/ipykernel/ipykernel-${version}.tar.gz" -checksum=1ce0e83672cc3bfdc1ffb5603e1d77ab125f24b41abc4612e22bfb3e994c0db2 +checksum=e178c1788399f93a459c241fe07c3b810771c607b1fb064a99d2c5d40c90c5d4 # checks create a cycle with python3-jupyter_core and python3-jupyter_client make_check=no