1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 11:19:50 +03:00
aports/testing/py3-deepdiff/APKBUILD
2022-01-14 22:20:15 +00:00

27 lines
774 B
Text

# Contributor: Alex McGrath <amk@amk.ie>
# Maintainer: Alex McGrath <amk@amk.ie>
pkgname=py3-deepdiff
_pkgname=deepdiff
pkgver=5.7.0
pkgrel=0
pkgdesc="Deep Difference and Search of any Python object/data"
url="https://github.com/seperman/deepdiff"
arch="noarch"
license="MIT"
depends="python3 py3-ordered-set"
makedepends="py3-setuptools"
options="!check" # tests fail
source="https://files.pythonhosted.org/packages/source/d/deepdiff/deepdiff-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
10d3b6116aef660126bd33c5df3142ef8a9413dc0b3f639db88b670dd0ec74bde4afd07f044bfd298f048f717d2fef150add04115e4d0408329fcb94303a0687 deepdiff-5.7.0.tar.gz
"