guix-commits
[Top][All Lists]
Advanced

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

06/33: gnu: Add julia-deepdiffs.


From: guix-commits
Subject: 06/33: gnu: Add julia-deepdiffs.
Date: Mon, 14 Jun 2021 07:46:18 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 52811a7609af634188cc2cfe4be96feb64c47a3c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 14 11:30:17 2021 +0300

    gnu: Add julia-deepdiffs.
    
    * gnu/packages/julia-xyz.scm (julia-deepdiffs): New variable.
---
 gnu/packages/julia-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 7af4081..e2f5bdb 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -727,6 +727,29 @@ without having to take direct dependencies.")
 to represent missing data.")
     (license license:expat)))
 
+(define-public julia-deepdiffs
+  (package
+    (name "julia-deepdiffs")
+    (version "1.2.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/ssfrr/DeepDiffs.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1gsbxb1d67g05h5bvzz3swdfih6404jrydy724a8dvbdgqvm3sds"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/ssfrr/DeepDiffs.jl";)
+    (synopsis "Compute and pretty-print diffs for data structures")
+    (description "@code{DeepDiffs.jl} provides the @code{deepdiff} function,
+which finds and displays differences (diffs) between Julia data structures.  It
+supports @code{Vectors}, @code{Dicts}, and @code{String}s.  When diffing
+dictionaries where values associated with a particular key may change,
+@code{deepdiff} will recurse into value to provide a more detailed diff.")
+    (license license:expat)))
+
 (define-public julia-dictionaries
   (package
     (name "julia-dictionaries")



reply via email to

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