mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
25 lines
732 B
Text
25 lines
732 B
Text
# Maintainer: opal hart <opal@wowana.me>
|
|
pkgname=py3-keyring
|
|
pkgver=21.2.1
|
|
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 py3-jeepney"
|
|
source="https://files.pythonhosted.org/packages/source/k/keyring/keyring-$pkgver.tar.gz"
|
|
builddir="$srcdir"/keyring-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="e9fdf88a638e1a299dae7ce77c65356cd39f95db973ba399497f2d1e1e7af7595b3071e6df33a4aaa0cc9899a96ae3eae3b02d2ece604f3ff844ac82d3192617 keyring-21.2.1.tar.gz"
|