guix-commits
[Top][All Lists]
Advanced

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

08/16: gnu: Add julia-safetestsets.


From: guix-commits
Subject: 08/16: gnu: Add julia-safetestsets.
Date: Thu, 20 May 2021 10:13:05 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 9f3dae8f61bdc60b699d3361c0dc21f6999203af
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu May 20 16:38:41 2021 +0300

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

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 93381d8..ebe7e86 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1423,6 +1423,33 @@ high-order accuracy, assuming that @code{f(x0+h)} has a 
Taylor series or some
 other power series in @code{h}.")
     (license license:expat)))
 
+(define-public julia-safetestsets
+  ;; The only release tag is the first commit in the repository.
+  (let ((commit "e553edc4c753344d38349304b9ff5483c3b8ff21")
+        (revision "1"))
+    (package
+      (name "julia-safetestsets")
+      (version (git-version "0.0.1" revision commit))
+      (source
+        (origin
+          (method git-fetch)
+          (uri (git-reference
+                 (url "https://github.com/YingboMa/SafeTestsets.jl";)
+                 (commit commit)))
+          (file-name (git-file-name name version))
+          (sha256
+           (base32 "1fb1dfdmiw2ggx60hf70954xlps0r48fcb3k3dvxynlz7ylphp96"))))
+      (build-system julia-build-system)
+      (arguments
+       `(#:julia-package-name "SafeTestsets"))
+      (native-inputs
+       `(("julia-staticarrays" ,julia-staticarrays)))
+      (home-page "https://github.com/YingboMa/SafeTestsets.jl";)
+      (synopsis "Julia's testset in a module")
+      (description "This package contains the testset from Julia, packaged into
+a loadable module.")
+      (license license:expat))))
+
 (define-public julia-sortingalgorithms
   (package
     (name "julia-sortingalgorithms")



reply via email to

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