mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
60 lines
1.7 KiB
Bash
60 lines
1.7 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
|
|
# - moved npm from checkdepends to makedepends
|
|
|
|
pkgname=jupyterlab
|
|
_pipname=jupyterlab
|
|
pkgver=4.2.0
|
|
pkgrel=1
|
|
pkgdesc='JupyterLab computational environment'
|
|
arch=(any)
|
|
url='https://github.com/jupyterlab/jupyterlab'
|
|
license=(LicenseRef-JupyterLab)
|
|
depends=(jupyter-notebook-shim
|
|
jupyter-server
|
|
python
|
|
python-async-lru
|
|
python-httpx
|
|
python-importlib-metadata
|
|
python-ipykernel
|
|
python-jupyter-core
|
|
python-jupyterlab-server
|
|
python-packaging
|
|
python-tornado
|
|
python-traitlets)
|
|
makedepends=(git
|
|
python-build
|
|
python-hatch-jupyter-builder
|
|
python-installer
|
|
npm)
|
|
optdepends=('jupyter-collaboration: collaborative mode'
|
|
'jupyterlab-widgets: ipywidgets support'
|
|
'npm: to install extensions')
|
|
checkdepends=(python-jupyter-server-terminals
|
|
python-pytest-jupyter
|
|
python-pytest-tornasync)
|
|
source=(git+https://github.com/jupyterlab/jupyterlab#tag=v$pkgver)
|
|
sha256sums=('275fcf3831f8302ea3d7f343847747b4fa7abef96df0d34a518941d739c4dc6b')
|
|
|
|
build() {
|
|
cd $pkgname
|
|
export NODE_OPTIONS=--max-old-space-size=1024
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname
|
|
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
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
mv "$pkgdir"/usr/etc "$pkgdir"
|
|
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|