mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
47 lines
1.4 KiB
Text
47 lines
1.4 KiB
Text
# Contributor: Aiden Grossman <agrossman154@yahoo.com>
|
|
# Maintainer: Aiden Grossman <agrossman154@yahoo.com>
|
|
pkgname=py3-ipykernel
|
|
pkgver=6.21.2
|
|
pkgrel=0
|
|
pkgdesc="IPython kernel for jupyter"
|
|
url="https://github.com/ipython/ipykernel"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="
|
|
ipython
|
|
py3-jupyter_client
|
|
py3-matplotlib-inline
|
|
py3-nest_asyncio
|
|
py3-packaging
|
|
py3-psutil
|
|
py3-tornado
|
|
py3-traitlets
|
|
py3-comm
|
|
python3
|
|
"
|
|
makedepends="py3-gpep517 py3-hatchling"
|
|
checkdepends="py3-ipyparallel py3-pytest py3-flaky py3-pytest-timeout py3-pytest-asyncio"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/ipython/ipykernel/releases/download/v$pkgver/ipykernel-$pkgver.tar.gz
|
|
deprecation-warnings.patch"
|
|
builddir="$srcdir/ipykernel-$pkgver"
|
|
options="!check" # py3-ipyparallel is circular, and an optional dep
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
pytest \
|
|
--deselect ipykernel/tests/test_kernel.py::test_shutdown_subprocesses
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer --destdir="$pkgdir" dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
e4d3aa102d83f9c9b16f392c5b37d55a9cd987ca6a58ce1c4b59d282ec945dcc8803539bf54d7b3bb71c11058fc20a3947fd875bebc5efa5f629015b544fe819 py3-ipykernel-6.21.2.tar.gz
|
|
5e1ccda828995dabc4e156dcb8e3f53bd99dcdfff6d109e9278d7daecd63db7b7973d5652ff68c180d7147d54cb42b66841e5bca0560078d38b698d93995be4e deprecation-warnings.patch
|
|
"
|