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
|
2022-04-07 18:59:26 +00:00
|
|
|
pkgver=3.3.3
|
|
|
|
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)
|
2022-03-02 22:27:21 +00:00
|
|
|
makedepends=(python-build python-installer)
|
2022-04-04 13:18:04 +00:00
|
|
|
depends=(python-jupyterlab_server python-jupyter_packaging jupyter-notebook-shim nodejs)
|
2020-12-24 16:39:41 +00:00
|
|
|
optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support')
|
2022-04-04 13:18:04 +00:00
|
|
|
checkdepends=('python-pytest-tornasync' 'npm')
|
|
|
|
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz
|
2022-04-07 18:59:26 +00:00
|
|
|
no-nbclassic.patch)
|
|
|
|
sha256sums=('294d67126015ba397f6b1c80563deec862e47e042623851bbe2a7d870d69eb6a'
|
|
|
|
'c81b7b957622b7ea68589daa568bba96a8955e768aea0bce60c27fa041e07cc4')
|
2021-03-24 18:18:47 +00:00
|
|
|
|
2022-03-16 13:57:51 +00:00
|
|
|
prepare() {
|
2022-04-04 13:18:04 +00:00
|
|
|
patch -d $pkgname-$pkgver -p1 < no-nbclassic.patch # Drop nbclassic dependency
|
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
|
|
|
|
pytest -v -k 'not test_build'
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|