PKGBUILDs/extra/jupyterlab/PKGBUILD

64 lines
1.8 KiB
Bash
Raw Normal View History

2019-11-17 16:52:49 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - export --max-old-space-size option to fix 32-bit FTBFS
2024-05-06 18:19:22 +00:00
# - moved npm from checkdepends to makedepends
2019-11-17 16:52:49 +00:00
pkgname=jupyterlab
_pipname=jupyterlab
2024-08-27 18:50:15 +00:00
pkgver=4.2.5
2024-04-27 16:16:52 +00:00
pkgrel=1
2021-07-27 22:50:43 +00:00
pkgdesc='JupyterLab computational environment'
2019-11-17 16:52:49 +00:00
arch=(any)
2021-07-27 22:50:43 +00:00
url='https://github.com/jupyterlab/jupyterlab'
2024-01-20 01:14:54 +00:00
license=(LicenseRef-JupyterLab)
2023-10-11 23:02:46 +00:00
depends=(jupyter-notebook-shim
jupyter-server
python
python-async-lru
2024-02-05 17:52:49 +00:00
python-httpx
2023-10-11 23:02:46 +00:00
python-importlib-metadata
python-ipykernel
python-jupyter-core
python-jupyterlab-server
python-packaging
python-tornado
python-traitlets)
2024-04-26 19:06:14 +00:00
makedepends=(git
python-build
2023-10-11 23:02:46 +00:00
python-hatch-jupyter-builder
2024-05-06 18:19:22 +00:00
python-installer
npm)
2023-10-11 23:02:46 +00:00
optdepends=('jupyter-collaboration: collaborative mode'
2024-06-27 00:12:51 +00:00
'jupyterlab-lsp: LSP extension'
2023-10-11 23:02:46 +00:00
'jupyterlab-widgets: ipywidgets support'
'npm: to install extensions')
2024-05-06 18:19:22 +00:00
checkdepends=(python-jupyter-server-terminals
2023-10-11 23:02:46 +00:00
python-pytest-jupyter
python-pytest-tornasync)
2024-04-26 19:06:14 +00:00
source=(git+https://github.com/jupyterlab/jupyterlab#tag=v$pkgver)
2024-08-27 18:50:15 +00:00
sha256sums=('35b51544ae7e0a73973b904a3ab4cd085711db52e5906fd619f1843be0a1c951')
2022-03-16 13:57:51 +00:00
2019-11-17 16:52:49 +00:00
build() {
2024-04-26 19:06:14 +00:00
cd $pkgname
2024-05-24 22:42:34 +00:00
# https://github.com/nodejs/node/issues/48444
export UV_USE_IO_URING=0
2019-11-17 16:52:49 +00:00
export NODE_OPTIONS=--max-old-space-size=1024
2022-03-02 22:27:21 +00:00
python -m build --wheel --no-isolation
2019-11-17 16:52:49 +00:00
}
2022-04-04 13:18:04 +00:00
check() {
2024-04-26 19:06:14 +00:00
cd $pkgname
2023-05-15 23:24:59 +00:00
python -m venv --system-site-packages test-env
test-env/bin/python -m installer dist/*.whl
test-env/bin/python -m pytest -v
2022-04-04 13:18:04 +00:00
}
2019-11-17 16:52:49 +00:00
package() {
2024-04-26 19:06:14 +00:00
cd $pkgname
2022-03-02 22:27:21 +00:00
python -m installer --destdir="$pkgdir" dist/*.whl
2019-11-17 16:52:49 +00:00
mv "$pkgdir"/usr/etc "$pkgdir"
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}