mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-25 10:32:20 +01:00
Deep Difference and Search of any Python object/data. https://github.com/seperman/deepdiff
26 lines
773 B
Plaintext
26 lines
773 B
Plaintext
# Contributor: Alex McGrath <amk@amk.ie>
|
|
# Maintainer: Alex McGrath <amk@amk.ie>
|
|
pkgname=py3-deepdiff
|
|
_pkgname=deepdiff
|
|
pkgver=5.0.2
|
|
pkgrel=0
|
|
pkgdesc="Deep Difference and Search of any Python object/data."
|
|
url="https://github.com/seperman/deepdiff"
|
|
arch="all"
|
|
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="6df1743dfbe5e4d26fdf3a51ffa5fc9f54e46fdba3ebdcc0c77bb88f31635f7ee092e121f2be475232c4af6c45687a87313280d933f87efefb4158e5851e7622 deepdiff-5.0.2.tar.gz"
|