mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
26 lines
917 B
Text
26 lines
917 B
Text
# Contributor: prspkt <prspkt@protonmail.com>
|
|
# Maintainer: prspkt <prspkt@protonmail.com>
|
|
pkgname=py3-lazy-object-proxy
|
|
_pkgname=lazy-object-proxy
|
|
pkgver=1.5.2
|
|
pkgrel=1
|
|
pkgdesc="Fast and thorough lazy object proxy"
|
|
options="!check" # Requires unpackaged pytest-benchmark
|
|
url="https://github.com/ionelmc/python-lazy-object-proxy"
|
|
arch="all"
|
|
license="BSD-2-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools python3-dev py3-setuptools_scm"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/"$_pkgname-$pkgver
|
|
|
|
build() {
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="a59102db5862e7c46312f15c9328674aea0e3efd37f3f9b29a058c065954aa7eadc4f772d2973ec616d1c06a5d02adda6ef1a8857085e5afdb93a0069ba401e2 lazy-object-proxy-1.5.2.tar.gz"
|