blob: 9d34fdb76890e4781e0b3aaef09d7d374a1a513d (
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
|
# Maintainer: Carl Smedstad <carsme@archlinux.org>
pkgname=json-schema-for-humans
pkgver=1.3.4
pkgrel=1
pkgdesc="Quickly generate HTML documentation from a JSON schema"
arch=(any)
url="https://github.com/coveooss/json-schema-for-humans"
license=(Apache-2.0)
depends=(
python
python-click
python-dataclasses-json
python-jinja
python-markdown2
python-pygments
python-pytz
python-requests
python-yaml
)
makedepends=(
python-build
python-installer
python-poetry
python-wheel
)
checkdepends=(
python-beautifulsoup4
python-pytest
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('92a00693609631183894fdaf619827483ae1957413ab877af25449b1aa88f49d')
_archive="$pkgname-$pkgver"
build() {
cd "$_archive"
python -m build --wheel --no-isolation
}
check() {
cd "$_archive"
pytest
}
package() {
cd "$_archive"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|