mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-deepdiff: Update to 8.5.0.
* gnu/packages/python-xyz.scm (python-deepdiff): Update to 8.5.0. [arguments]<#:test-flags>: Skip failing tests. [propagated-inputs]: Remove python-ordered-set. Add python-click, python-pyyaml, python-orderly-set, python-orjson. [native-inputs]: Remove python-click, python-dateutil, python-mock, python-setuptools, python-wheel, python-toml. Add python-flit-core, python-pandas, python-pydantic-2, python-pytest-benchmark, python-pytz, python-toml-w. Change-Id: I891fe650e13385a69141b201e3ec743733d71610
This commit is contained in:
parent
5552bb8c8d
commit
8082f9c2ac
1 changed files with 15 additions and 10 deletions
|
@ -38803,26 +38803,31 @@ object, which can be useful if you want to force your objects into a table.")
|
||||||
(define-public python-deepdiff
|
(define-public python-deepdiff
|
||||||
(package
|
(package
|
||||||
(name "python-deepdiff")
|
(name "python-deepdiff")
|
||||||
(version "6.3.0")
|
(version "8.5.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "deepdiff" version))
|
(uri (pypi-uri "deepdiff" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0i5nnb3nppi2vgbhiakpxiagyhx7l1f50hzcl8fcgica4bkz2fva"))))
|
"1l8wvirgif61cqwsqzd3kf8slzlrjnffmqxnrfwxak4dz8lkbpd4"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs (list python-ordered-set))
|
(arguments
|
||||||
|
;; Ignore Polars test (not packaged).
|
||||||
|
(list #:test-flags #~(list "-k" "not test_polars")))
|
||||||
|
(propagated-inputs (list python-click ; for CLI
|
||||||
|
python-pyyaml ; for CLI
|
||||||
|
python-orderly-set
|
||||||
|
python-orjson)) ; for optimization
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-click
|
(list python-flit-core
|
||||||
python-dateutil
|
|
||||||
python-jsonpickle
|
python-jsonpickle
|
||||||
python-mock
|
|
||||||
python-numpy
|
python-numpy
|
||||||
|
python-pandas
|
||||||
|
python-pydantic-2
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pyyaml
|
python-pytest-benchmark
|
||||||
python-setuptools
|
python-pytz
|
||||||
python-wheel
|
python-tomli-w))
|
||||||
python-toml))
|
|
||||||
(home-page "https://github.com/seperman/deepdiff")
|
(home-page "https://github.com/seperman/deepdiff")
|
||||||
(synopsis "Deep difference and search of any Python object/data")
|
(synopsis "Deep difference and search of any Python object/data")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue