guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#63139] [PATCH python 06/20] gnu: Add python-deepdiff.


From: John Kehayias
Subject: [bug#63139] [PATCH python 06/20] gnu: Add python-deepdiff.
Date: Fri, 28 Apr 2023 05:50:32 +0000

* gnu/packages/python-xyz.scm (python-deepdiff): New variable.
---
 gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e94f8067f3..95eea4ecf2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18072,6 +18072,33 @@ (define-public python-cachy
 database, file, dict stores.  Cachy supports python versions 2.7+ and 3.2+.")
     (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-dateutil
+                         python-click
+                         python-jsonpickle
+                         python-numpy
+                         python-pytest
+                         python-pyyaml))
+    (home-page "https://zepworks.com";)
+    (synopsis
+     "Deep difference of any Python objects")
+    (description
+     "Deep Difference and Search of any Python object/data.  Recreate objects
+by adding adding deltas to each other.  Also includes DeepSearch for searching
+for objects within other objects and DeepHash to hash any object.")
+    (license license:expat)))
+
 (define-public poetry
   (package
     (name "poetry")
--
2.39.2







reply via email to

[Prev in Thread] Current Thread [Next in Thread]