mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-19 23:02:19 +01:00
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-dpath
|
|
_pkgname=dpath
|
|
pkgver=2.0.6
|
|
pkgrel=0
|
|
pkgdesc="Filesystem-like pathing and searching for dictionaries"
|
|
url="https://www.github.com/akesterson/dpath-python"
|
|
arch="noarch"
|
|
license="MIT"
|
|
replaces="py-dpath" # for backwards compatibility
|
|
provides="py-dpath=$pkgver-r$pkgrel" # for backwards compatibility
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-hypothesis py3-mock py3-nose py3-pytest"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="$builddir"/build/lib pytest-3
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
6a008d6d12fadf9a45677b89b8a803f33ba9a83e54aec67c155d4e749bff4e60a5411a65a9361f3b70fa319b82ad2580735af407478bf7be022b81fc0b4a2434 dpath-2.0.6.tar.gz
|
|
"
|