16 lines
451 B
Plaintext
16 lines
451 B
Plaintext
# Description: A decorator for caching properties in classes
|
|
# URL: https://pypi.org/project/cached-property/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-cached-property
|
|
version=1.5.2
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/c/cached-property/cached-property-$version.tar.gz)
|
|
|
|
build() {
|
|
cd cached-property-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG
|
|
}
|