blob: c7f7a61da1b08bdc3e69c83257fa76e384181ba1 (
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
|
# Maintainer: opal hart <opal@wowana.me>
pkgname=py3-keyring
_pkgname="${pkgname#py3-}"
pkgver=21.1.0
pkgrel=0
pkgdesc="Access the system keyring service from Python"
url="https://github.com/jaraco/keyring"
arch="noarch"
license="GPL-3.0-only"
depends="python3 py3-setuptools py3-entrypoints py3-secretstorage"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver
build() {
python3 setup.py build
}
check() {
python3 setup.py check
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="9d5b2d1a18ec9f814599d8b2ff3ea6c9e72a77a99556c6377c5259f105e2b61b89610cec7717ae47c372bbec6854ad0948fa60ea0fdda458758ea9da66010323 keyring-21.1.0.tar.gz"
|