aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-fido2/APKBUILD
blob: 10484b9951e650d9add9c6de6df970c73681cdbf (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
# Contributor: Daniel Everett <deverett@gmail.com>
# Maintainer: Daniel Everett <deverett@gmail.com>
pkgname=py3-fido2
_pkgname=${pkgname#py3-}
pkgver=0.8.1
pkgrel=0
pkgdesc="Provides library functionality for FIDO 2.0, including communication with a device over USB"
url="https://developers.yubico.com/python-fido2/"
arch="noarch"
license="BSD-2-Clause AND Apache-2.0 AND MPL-2.0"
depends="py3-cryptography py3-six"
makedepends="py3-setuptools"
checkdepends="py3-cparser py3-mock"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver

build() {
	python3 setup.py build
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

check() {
	# Requires downloading 'pyfakefs' module
	touch "test/__init__.py"
	python3 setup.py test
}

sha512sums="fc0753ea694f2170d529129764cd9f9c5439cd2f467e4f384d7a698266ee8391a5c9c7c6e51d2dc2a99b93fca1c7d5288d5236e302672a87b8ca7704f328c0b5  fido2-0.8.1.tar.gz"