36 lines
1.4 KiB
Bash
36 lines
1.4 KiB
Bash
# Template file for 'python3-jupyterlab_server'
|
|
pkgname=python3-jupyterlab_server
|
|
version=2.27.3
|
|
revision=1
|
|
build_style=python3-pep517
|
|
hostmakedepends="hatchling"
|
|
depends="python3-jupyter_server python3-Babel python3-json5 python3-requests"
|
|
checkdepends="$depends python3-pytest-jupyter python3-openapi-core
|
|
python3-requests-mock python3-strict-rfc3339 python3-ruamel.yaml python3-pip"
|
|
short_desc="Server components for JupyterLab and JL-like applications"
|
|
maintainer="dkwo <nicolopiazzalunga@gmail.com>, Gonzalo Tornaría <tornaria@cmat.edu.uy>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/jupyterlab/jupyterlab_server"
|
|
changelog="https://raw.githubusercontent.com/jupyterlab/jupyterlab_server/main/CHANGELOG.md"
|
|
distfiles="${PYPI_SITE}/j/jupyterlab_server/jupyterlab_server-${version}.tar.gz"
|
|
checksum=eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4
|
|
|
|
if [ "$XBPS_BUILD_ENVIRONMENT" = void-packages-ci ]; then
|
|
# tests setup fails on CI (no idea why)
|
|
make_check_args="-p no:unraisableexception"
|
|
fi
|
|
|
|
do_check() {
|
|
# test_translation_api.py needs to run in a venv
|
|
local testdir="${wrksrc}/.xbps-testdir/$(date +%s)"
|
|
python3 -m venv --system-site-packages --without-pip "${testdir}"
|
|
|
|
local testpy="${testdir}/bin/python3"
|
|
"${testpy}" -m installer dist/*.whl
|
|
PATH="${testdir}/bin:${PATH}" "${testpy}" -m pytest ${make_check_args}
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|