blob: 4aae91a9e05f630dba77ed4f722b9fb44329489a (
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
|
# Maintainer: Carl Smedstad <carsme@archlinux.org>
# Contributor: Michał Wojdyła < micwoj9292 at gmail dot com >
pkgname=python-pyhanko
_pkgname=pyHanko
pkgver=0.25.1
pkgrel=1
pkgdesc="Tools for stamping and signing PDF files"
url="https://github.com/MatthiasValvekens/pyHanko"
license=(MIT)
arch=(any)
depends=(
python
python-aiohttp
python-asn1crypto
python-click
python-cryptography
python-dateutil
python-oscrypto
python-pillow
python-pyhanko-certvalidator
python-python-pkcs11
python-qrcode
python-requests
python-tzlocal
python-xsdata
python-yaml
)
makedepends=(
python-build
python-installer
python-setuptools
python-wheel
)
checkdepends=(
certomancer
python-barcode
python-defusedxml
python-fonttools
python-freezegun
python-pytest
python-pytest-aiohttp
python-pytest-asyncio
python-requests-mock
python-uharfbuzz
)
optdepends=(
'python-barcode: for image support'
'python-defusedxml: to use XMP'
'python-fonttools: to use OpenType fonts'
'python-uharfbuzz: to use OpenType fonts'
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('a5b5cf4358214b7b7afc3f9f4c87c8d7dd11704a23b3a164cc59357ceaf24d3c')
build() {
cd $_pkgname-$pkgver
python -m build --wheel --no-isolation
}
check() {
cd $_pkgname-$pkgver
pytest --ignore pyhanko_tests/test_csc.py
}
package() {
cd $_pkgname-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}
|