guix-commits
[Top][All Lists]
Advanced

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

15/26: gnu: Add julia-mocking.


From: guix-commits
Subject: 15/26: gnu: Add julia-mocking.
Date: Mon, 31 May 2021 05:56:23 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit f273a4b799e5cb3976785f2ea3e8a36074dc6724
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 31 11:35:34 2021 +0300

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

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index aeccbf3..51bd924 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1266,6 +1266,28 @@ resolving them into absolute units.")
 with @code{missing} values in Julia.")
     (license license:expat)))
 
+(define-public julia-mocking
+  (package
+    (name "julia-mocking")
+    (version "0.7.1")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/invenia/Mocking.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "10jz716v6i3gpd403rmcrip6cncjl9lqr12cdl321x1994a5g8ck"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-exprtools" ,julia-exprtools)))
+    (home-page "https://github.com/invenia/Mocking.jl";)
+    (synopsis "Overload Julia function calls")
+    (description "The purpose of this package is to allow Julia function calls
+to be temporarily overloaded for the purpose of testing.")
+    (license license:expat)))
+
 (define-public julia-msgpack
   (package
     (name "julia-msgpack")



reply via email to

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