mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-25 16:31:24 +02:00
28 lines
777 B
Plaintext
28 lines
777 B
Plaintext
# Contributor: Alex McGrath <amk@amk.ie>
|
|
# Maintainer: Alex McGrath <amk@amk.ie>
|
|
pkgname=py3-deepdiff
|
|
_pkgname=deepdiff
|
|
pkgver=5.6.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="deepdiff-$pkgver.tar.gz::https://github.com/seperman/deepdiff/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
3ff4b200378e3ef73401adad0a7f9b6aa98c6e78387973d4690dfb2a510376b48241a6c3b23342e0008828befc145eb2e2dd936ac0236bc0b6293ab5a031c98c deepdiff-5.6.0.tar.gz
|
|
"
|