void-packages/srcpkgs/python3-jupyterlab_server/template

36 lines
1.4 KiB
Bash

# Template file for 'python3-jupyterlab_server'
pkgname=python3-jupyterlab_server
version=2.27.1
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=097b5ac709b676c7284ac9c5e373f11930a561f52cd5a86e4fc7e5a9c8a8631d
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
}