mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
36 lines
830 B
Plaintext
Executable File
36 lines
830 B
Plaintext
Executable File
# Contributor: Andy Hawkins <andy@gently.org.uk>
|
|
# Maintainer: Andy Hawkins <andy@gently.org.uk>
|
|
pkgname=py3-makefun
|
|
pkgver=1.13.1
|
|
pkgrel=1
|
|
pkgdesc="Small library to dynamically create python functions"
|
|
url="https://github.com/smarie/python-makefun"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3"
|
|
makedepends="
|
|
py3-pytest
|
|
py3-pytest-runner
|
|
py3-setuptools
|
|
py3-setuptools_scm
|
|
py3-wheel
|
|
"
|
|
source="https://pypi.python.org/packages/source/m/makefun/makefun-$pkgver.tar.gz"
|
|
builddir="$srcdir/makefun-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
ae103d3827673c4124d051e3c76d3d0d126c783ac7a1ea09de3801fd695439eaa549c297bd5c262184a3ee6fdf7b046065081fa3183642778148c2134d7bfc06 makefun-1.13.1.tar.gz
|
|
"
|