blob: 1564a97eb639dd9d78e5f302d1b8c33c5588545d (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Maintainer: Alexander Bocken <alexander@bocken.org>
_name=solara
pkgname=python-${_name,,}
pkgver=1.44.1
pkgrel=1
pkgdesc="A pure Python, React-style web framework"
arch=('any')
url="https://solara.dev"
license=(MIT)
depends=(
# solara
python
'python-click>=7.1.0'
python-filelock
python-ipykernel
python-jinja
python-jupyter-client
python-jupyter-core
python-jupyter-events
python-rich-click
# solara-ui
python-humanize
'python-ipyvue>=1.9.0'
'python-ipyvuetify>=1.6.10'
'python-ipywidgets>=7.7'
'python-reacton>=1.9'
python-requests
# solara-server
python-jupyter-client
jupyter-nbformat
# optionals, TODO: determine if these should be moved to optdepends
python-markdown
python-markupsafe
pymdown-extensions
python-starlette
uvicorn
python-watchdog
python-watchfiles
python-websockets
python-cachetools
)
makedepends=('python-installer' 'python-wheel')
_whl="${_name//-/_}-$pkgver-py2.py3-none-any.whl"
_ui_name=solara_ui
_ui_whl="${_ui_name//-/_}-$pkgver-py2.py3-none-any.whl"
_server_name=solara-server
_server_whl="${_server_name//-/_}-$pkgver-py2.py3-none-any.whl"
source=("https://files.pythonhosted.org/packages/py2.py3/${_name::1}/$_name/${_whl}"
"https://files.pythonhosted.org/packages/py2.py3/${_ui_name::1}/$_ui_name/${_ui_whl}"
"https://files.pythonhosted.org/packages/py2.py3/${_server_name::1}/$_server_name/${_server_whl}")
sha256sums=(63b43c7ac0bc9086ab91cf842381677976048717ab2d8b7bd90414890fc6591f
60ff31955bcfdbe535b3c6309a2bfcfd5e459ecdf3c190899c96e94f5ab51da3
229383e63b1c428a8b4a937accdb9f504224cfd3ba6a382c4008e728ed3df637)
noextract=("$_whl"
"$_ui_whl"
"$_server_whl")
package() {
python -m installer --destdir="$pkgdir" "$_whl"
# Move the license file to the correct location
_py="$(python -c 'from sys import version_info as vi; print(f"python{vi.major}.{vi.minor}")')"
mkdir -p "$pkgdir/usr/share/licenses/$pkgname/"
mv "$pkgdir/usr/lib/${_py}/site-packages/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/"
python -m installer --destdir="$pkgdir" "$_ui_whl"
rm -rf "$pkgdir/usr/lib/${_py}/site-packages/prefix" # also provided by solara wheel, which installs to correct location
python -m installer --destdir="$pkgdir" "$_server_whl"
# remove duplicate license file (in incorrect location)
rm "$pkgdir/usr/lib/${_py}/site-packages/LICENSE"
}
|