mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
32 lines
780 B
Text
32 lines
780 B
Text
# Maintainer: Donboan <donoban@riseup.net>
|
|
pkgname=py3-aiosignal
|
|
_pkgname=aiosignal
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
pkgdesc="A list of registered asynchronous callbacks"
|
|
url="https://github.com/aio-libs/aiosignal"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="
|
|
python3
|
|
py3-frozenlist
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::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 --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
577cda11ffc3a343fadda81e7a037ab4de9cf16e9913124228b53a5e2fd6be4d9b7b3e1d92d61cbc5c472f318eccfa9fae580ca32aad25f42a05231ebea9caa6 py3-aiosignal-1.3.1.tar.gz
|
|
"
|