mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-18 20:22:27 +02:00
31 lines
864 B
Plaintext
31 lines
864 B
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py3-gitlab
|
|
_pkgname=python-gitlab
|
|
pkgver=2.0.1
|
|
pkgrel=0
|
|
pkgdesc="v4 GitLab API compliant library and cmdline tool"
|
|
options="!check" # Requires unpackaged 'httmock'
|
|
url="https://github.com/python-gitlab/python-gitlab"
|
|
arch="noarch"
|
|
license="LGPL-3.0-or-later"
|
|
depends="python3 py3-requests py3-six"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest py3-mock"
|
|
source="https://files.pythonhosted.org/packages/source/p/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
py.test-3
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="ca73dc00968d08381c57b8f56605858ec652f5d6ba497a76ba4c04c6bc78f46857b082d9a2134525690a2d9993717e022df2c560b7628334cb1e2e53b9e07377 python-gitlab-2.0.1.tar.gz"
|