mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-31 19:31:10 +02:00
30 lines
786 B
Plaintext
30 lines
786 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=py3-cached-property
|
|
pkgver=1.4.3
|
|
pkgrel=0
|
|
pkgdesc="Decorator for caching properties in classes"
|
|
url="https://github.com/pydanny/cached-property"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3"
|
|
makedepends="python3-dev"
|
|
source="https://pypi.io/packages/source/c/cached-property/cached-property-$pkgver.tar.gz"
|
|
builddir="$srcdir/cached-property-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="e36e61af8f68a253573efbac666abd4e897142b3cec2499c50ba932924f8dad786979e1a297df7f0898310ae1aec1116615dff6e39c0b203e262628b450ad91f cached-property-1.4.3.tar.gz"
|