aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-tomlkit/APKBUILD
blob: df1c1d177044b0b3444ce019d7e7a840e4a86d39 (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
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-tomlkit
_realname=tomlkit
pkgver=0.5.3
pkgrel=0
pkgdesc="Python3 library for parsing and modifying TOML"
options="!check" # No tests on pypi tarball, github uses pyproject.toml
url="https://github.com/sdispater/tomlkit"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_realname:0:1}/$_realname/$_realname-$pkgver.tar.gz"
builddir="$srcdir/$_realname-$pkgver"

build() {
	python3 setup.py build
}

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

sha512sums="90939b380fb8c58a1825c45740d599f116adf5075b1efb327ceb72353b1d1b3d6d6b960ed7673d46af586fc3ed56a866a6a8eb8dfc2a78ea128b5b7f214b0b55  tomlkit-0.5.3.tar.gz"