deepdiff 8.4.0

This commit is contained in:
2025-03-16 12:25:30 +03:00
parent 34b4f08dc2
commit aea7902fea
2 changed files with 38 additions and 53 deletions

View File

@ -1,53 +0,0 @@
name='python3-deepdiff'
version='8.1.1'
release='1'
desc='Deep Difference and Search of any Python object/data.'
homepage='https://github.com/seperman/deepdiff'
license=('MIT')
architectures=('all')
provides=('deepdiff')
conflicts=('deepdiff')
deps=(
'python3-ordered-set'
)
opt_deps=(
'python3-click: for cli'
'python3-tomli-w: for cli'
'python3-yaml: for YAML support'
'python3-clevercsv: for more robust CSV parsing'
'python3-orjson: for speed and memory optimized parsing'
)
build_deps=(
'python3-setuptools'
'python3-pytest'
'python3-clevercsv'
'python3-click'
'python3-dateutil'
'python3-jsonpickle'
'python3-numpy'
'python3-tomli-w'
'python3-yaml'
'python3-orjson'
'python3-pydantic'
)
sources=("https://github.com/seperman/deepdiff/archive/$version/$name-$version.tar.gz")
checksums=('SKIP')
build() {
cd "deepdiff-$version"
python setup.py build
}
check() {
cd "deepdiff-$version"
pytest tests
}
package() {
cd "deepdiff-$version"
python setup.py install --root="$pkgdir" --optimize=1
install-license LICENSE ./deepdiff/LICENSE
}