summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-06 23:32:58 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:22:01 +0100
commitbab4c9c0e7d2f4f766a8f87ae23ecb97b5157382 (patch)
treeabfefb3fcaa37b5a97a37b70d247f93ebe7d7f06 /gnu/packages/python-xyz.scm
parentf4179e549b7d7feeec2c6509a68434ad8b4529f5 (diff)
gnu: python-deepdiff: Update to 8.6.1.
* gnu/packages/python-xyz.scm (python-deepdiff): Update to 8.6.1. [native-inputs]: Add python-uuid6. Change-Id: Ife7367c5772c8bba067e698f01b974cf2bfb4bfb Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 65c06bdc85f..6d272421d6c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -35039,15 +35039,16 @@ object, which can be useful if you want to force your objects into a table.")
(define-public python-deepdiff
(package
(name "python-deepdiff")
- (version "8.5.0")
+ (version "8.6.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "deepdiff" version))
(sha256
(base32
- "1l8wvirgif61cqwsqzd3kf8slzlrjnffmqxnrfwxak4dz8lkbpd4"))))
+ "0fk4zzrv7chynjbpgk7bj7nhqc7c3va7pv00a8dqk06ad6kxfmpc"))))
(build-system pyproject-build-system)
(arguments
+ ;; tests: 1028 passed, 10 skipped, 1 deselected
;; Ignore Polars test (not packaged).
(list #:test-flags #~(list "-k" "not test_polars")))
(propagated-inputs (list python-click ; for CLI
@@ -35063,6 +35064,7 @@ object, which can be useful if you want to force your objects into a table.")
python-pytest
python-pytest-benchmark
python-pytz
+ python-uuid6
python-tomli-w))
(home-page "https://github.com/seperman/deepdiff")
(synopsis "Deep difference and search of any Python object/data")