blob: d4a1b30492934b331bf8545ab01255b158af0849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Maintainer: Jakub Klinkovský <lahwaacz at archlinux dot org>
pkgname=jupyterlab-pytutor
pkgver=0.2.0
pkgrel=5
pkgdesc="Python Tutor extension for JupyterLab"
arch=(any)
url="https://github.com/jupyterlab-contrib/jupyterlab-pytutor"
license=(BSD-3-Clause)
depends=(
jupyterlab
)
makedepends=(
npm
python-build
python-hatch-jupyter-builder
python-hatch-nodejs-version
python-hatchling
python-installer
python-jupyter-packaging
python-setuptools
python-wheel
)
source=(
$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz
install.json
)
sha256sums=('f21f24217649b6d9f848f6fb4d4928f64413eb01a6717a6697961805f2e63e1b'
'493d16c764f090a6c4350644dc29898a18aab83c95240c59f6b9d98b99e6f9db')
prepare() {
cd $pkgname-$pkgver
# Replace uninstallation instructions with Arch-specific ones.
cp ../install.json .
}
build() {
cd $pkgname-$pkgver
python -m build --no-isolation --wheel --skip-dependency-check
}
package() {
cd $pkgname-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
install -vDm 644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
}
|