mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-20 07:11:59 +01:00
28 lines
783 B
Plaintext
28 lines
783 B
Plaintext
# Contributor: Alex McGrath <amk@amk.ie>
|
|
# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
|
|
pkgname=py3-deepdiff
|
|
_pkgname=deepdiff
|
|
pkgver=5.8.1
|
|
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="
|
|
22dc5c7cbc0ae2df832c644c88c60811bad218650e07f1d982efe93cb4e3c859f7b3077234f0d022583582a487640abf70df1e34b677631b66c1c1e37e606a04 deepdiff-5.8.1.tar.gz
|
|
"
|