aboutsummaryrefslogtreecommitdiffstats
path: root/testing/mycli/APKBUILD
blob: ffe36effa83b3bd007030b4684420e6184963812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Contributor: Thomas Boerger <thomas@webhippie.de>
# Maintainer: Thomas Boerger <thomas@webhippie.de>
pkgname=mycli
pkgver=1.21.1
pkgrel=0
pkgdesc="MySQL CLI with autocompletion and syntax highlighting"
url="https://www.mycli.net"
arch="noarch"
license="BSD-3-Clause"
depends="python3
	py3-click
	py3-pygments
	py3-prompt_toolkit>2.0.5
	py3-pymysql
	py3-sqlparse<0.4.0
	py3-configobj
	py3-cryptography
	py3-cli_helpers"
makedepends="python3-dev py3-setuptools"
checkdepends="py3-pytest py3-mock"
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/m/mycli/mycli-$pkgver.tar.gz"

build() {
	python3 setup.py build
}

check() {
	python3 -m pytest -v test
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="ed7b971fdefd36f7a93b3b373b0b81e51f43b21ce53089e5ae6bfe828361f47b5d6b95c8d3974496546f014fd71ac14a6b4a79f570271fe192a14ab77c8084fd  mycli-1.21.1.tar.gz"