guix-commits
[Top][All Lists]
Advanced

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

08/33: gnu: Add julia-ellipsisnotation.


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

efraim pushed a commit to branch master
in repository guix.

commit 25ece40ef7e95d7872665a809231a99f4d79f3fc
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 14 11:34:56 2021 +0300

    gnu: Add julia-ellipsisnotation.
    
    * gnu/packages/julia-xyz.scm (julia-ellipsisnotation): 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 b574c01..8e82f5e 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -968,6 +968,29 @@ them.  Conversions and promotions are defined to allow 
performing operations on
 combinations of dual numbers with predefined Julia numeric types.")
     (license license:expat)))
 
+(define-public julia-ellipsisnotation
+  (package
+    (name "julia-ellipsisnotation")
+    (version "1.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/ChrisRackauckas/EllipsisNotation.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "0py46kxl702r8pw3v7x4cqllf7yc91b0dr7vb60xh2qi7d6y3jc7"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-arrayinterface" ,julia-arrayinterface)))
+    (home-page "https://github.com/ChrisRackauckas/EllipsisNotation.jl";)
+    (synopsis "Elipsis notation implementation")
+    (description "This implements the notation @code{..} for indexing arrays.
+It's similar to the Python @code{...} in that it means \"all of the columns
+before (or after)\".")
+    (license license:expat)))
+
 (define-public julia-example
   (let ((commit "f968c69dea24f851d0c7e686db23fa55826b5388"))
     (package



reply via email to

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