PKGBUILDs/community/jupyterlab/PKGBUILD

41 lines
1.3 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
pkgname=jupyterlab
_pipname=jupyterlab
2023-05-15 23:24:59 +00:00
pkgver=4.0.0
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'
2019-11-17 16:52:49 +00:00
license=(custom)
2023-05-15 23:24:59 +00:00
makedepends=(python-build python-installer python-hatch-jupyter-builder)
depends=(python-jupyterlab_server python-jupyter_packaging python-async-lru jupyter-server-ydoc nodejs)
2023-05-03 19:27:10 +00:00
optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support')
2023-05-15 23:24:59 +00:00
checkdepends=(python-pytest-tornasync python-pytest-jupyter npm python-jupyter-server-terminals)
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
sha256sums=('ce656d04828b2e4ee0758e22c862cc99aedec66a10319d09f0fd5ea51be68dd8')
2022-03-16 13:57:51 +00:00
2019-11-17 16:52:49 +00:00
build() {
cd $pkgname-$pkgver
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() {
cd $pkgname-$pkgver
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() {
cd $pkgname-$pkgver
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
}