summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 774d76081ae6312dcd0e5af0e4bf62b054a0af20 (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
# Maintainer: Guillaume Horel <guillaume.horel@gmail.com>
# Contributor: Arthur Țițeică | arthur dot titeica with gmail
_pkgname=exchangelib
pkgname=python-exchangelib
pkgver=5.5.0
pkgrel=1
pkgdesc="Client for Microsoft Exchange Web Services (EWS)"
arch=(any)
url="https://github.com/ecederstrand/exchangelib"
license=('BSD-2-Clause')
depends=(python-cached-property python-cryptography python-defusedxml python-dnspython python-isodate python-lxml python-pygments python-requests-kerberos python-requests-ntlm python-requests-oauthlib python-tzlocal)
makedepends=(python-build python-installer python-setuptools python-wheel)
checkdepends=(python-dateutil python-psutil python-pytest python-pytz python-requests-mock python-yaml)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ecederstrand/exchangelib/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('ea029651b586464929d33ea600e29ef985da42d464913edd8558388399104574')

build() {
    cd "${_pkgname}-$pkgver"
    python -m build --wheel --no-isolation
}

package() {
    cd "${_pkgname}-$pkgver"
    python -m installer --destdir="${pkgdir}" dist/*.whl
    install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}

check() {
    cd "${_pkgname}-$pkgver"
    pytest tests
}