PKGBUILDs/community/jupyterlab/PKGBUILD
2022-03-10 14:19:40 +00:00

32 lines
1 KiB
Bash

# 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
pkgver=3.3.1
pkgrel=1
pkgdesc='JupyterLab computational environment'
arch=(any)
url='https://github.com/jupyterlab/jupyterlab'
license=(custom)
makedepends=(python-build python-installer)
depends=(python-jupyterlab_server python-jupyter_packaging jupyter-nbclassic nodejs)
optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support')
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
sha256sums=('ce482799379c70aa87e63b59e2c5379779ce18658b92460cd20bb44154865973')
build() {
cd $pkgname-$pkgver
export NODE_OPTIONS=--max-old-space-size=1024
python -m build --wheel --no-isolation
}
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
}