# Maintainer: Antonio Rojas # ALARM: Kevin Mihelich # - export --max-old-space-size option to fix 32-bit FTBFS pkgname=jupyterlab _pipname=jupyterlab pkgver=4.0.3 pkgrel=2 pkgdesc='JupyterLab computational environment' arch=(any) url='https://github.com/jupyterlab/jupyterlab' license=(custom) makedepends=(python-build python-installer python-hatch-jupyter-builder) depends=(python-jupyterlab_server python-async-lru jupyter-notebook-shim) optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support' 'jupyter-collaboration: collaborative mode') 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=('e14d1ce46a613028111d0d476a1d7d6b094003b7462bac669f5b478317abcb39') build() { cd $pkgname-$pkgver export NODE_OPTIONS=--max-old-space-size=1024 python -m build --wheel --no-isolation } check() { cd $pkgname-$pkgver python -m venv --system-site-packages test-env test-env/bin/python -m installer dist/*.whl test-env/bin/python -m pytest -v } package() { cd $pkgname-$pkgver python -m installer --destdir="$pkgdir" dist/*.whl mv "$pkgdir"/usr/etc "$pkgdir" install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE }