mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-12 09:12:36 +02:00
this is only a partial rebuild, including stuff that i built on my personal machine with python 3.12.2; might fail with 3.12.3
29 lines
836 B
Plaintext
29 lines
836 B
Plaintext
# Contributor: Dmitry Zakharchenko <dmitz@disroot.org>
|
|
# Maintainer: Dmitry Zakharchenko <dmitz@disroot.org>
|
|
pkgname=py3-itunespy
|
|
_pkgname=itunespy
|
|
pkgver=1.6
|
|
pkgrel=3
|
|
pkgdesc="Library to fetch data from the iTunes Store API"
|
|
url="https://github.com/sleepyfran/itunespy"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="py3-requests py3-pycountry"
|
|
makedepends="py3-setuptools"
|
|
options="!check" # no test suite
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/sleepyfran/itunespy/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
d91428e23a71bdbc62e6b8126b379aa48f06a365056147cf30eb4fa6132243d35c8a8d6dc536174a53f206bf7bcb4dcebb5a3697fac0fd88cbcb38205202ad81 py3-itunespy-1.6.tar.gz
|
|
"
|