[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/26: gnu: Add python-deepdiff.
From: |
guix-commits |
Subject: |
02/26: gnu: Add python-deepdiff. |
Date: |
Wed, 10 May 2023 13:30:57 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit e43ceae59f4b7e69fea25f8242db9073fab06f48
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 9 22:28:28 2023 +0200
gnu: Add python-deepdiff.
* gnu/packages/python-xyz.scm (python-deepdiff): New variable.
---
gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4f48d80eb6..74103403bb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31645,6 +31645,34 @@ development but it can be used for all sorts of
general purpose parsing.")
object, which can be useful if you want to force your objects into a table.")
(license license:expat)))
+(define-public python-deepdiff
+ (package
+ (name "python-deepdiff")
+ (version "6.3.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "deepdiff" version))
+ (sha256
+ (base32
+ "0i5nnb3nppi2vgbhiakpxiagyhx7l1f50hzcl8fcgica4bkz2fva"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-ordered-set))
+ (native-inputs
+ (list python-click
+ python-dateutil
+ python-jsonpickle
+ python-mock
+ python-numpy
+ python-pytest
+ python-pyyaml))
+ (home-page "https://github.com/seperman/deepdiff")
+ (synopsis "Deep difference and search of any Python object/data")
+ (description
+ "This package provides tools for computing deep differences and searching
+of any Python object/data. Recreate objects by adding adding deltas to each
+other.")
+ (license license:expat)))
+
(define-public python-deepmerge
(package
(name "python-deepmerge")
- branch master updated (e2eb43f945 -> b7534e4b5d), guix-commits, 2023/05/10
- 02/26: gnu: Add python-deepdiff.,
guix-commits <=
- 22/26: gnu: Add python-typeshed-client., guix-commits, 2023/05/10
- 16/26: gnu: Add python-starlette-for-fastapi-0.88., guix-commits, 2023/05/10
- 08/26: gnu: Add python-types-setuptools., guix-commits, 2023/05/10
- 10/26: gnu: python-blessed: Update to 1.20.0., guix-commits, 2023/05/10
- 23/26: gnu: Add python-starsessions-for-pytorch-lightning., guix-commits, 2023/05/10
- 20/26: gnu: python-arrow: Update to 1.2.3., guix-commits, 2023/05/10
- 13/26: gnu: python-scikit-optimize: Fix build with newer numpy and sklearn., guix-commits, 2023/05/10
- 19/26: gnu: Add python-types-requests., guix-commits, 2023/05/10
- 01/26: gnu: python-pytorch: Update to 1.13.1., guix-commits, 2023/05/10
- 06/26: gnu: Add python-lightning-utilities., guix-commits, 2023/05/10