diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-06-14 11:34:56 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-06-14 14:45:20 +0300 |
commit | 25ece40ef7e95d7872665a809231a99f4d79f3fc (patch) | |
tree | 63c615550f25e1205fe3415f115ed915900499f9 /gnu/packages/julia-xyz.scm | |
parent | ef15951445a1b34321d7efb6a7e9a97c0fd10adf (diff) | |
download | guix-25ece40ef7e95d7872665a809231a99f4d79f3fc.tar guix-25ece40ef7e95d7872665a809231a99f4d79f3fc.tar.gz |
gnu: Add julia-ellipsisnotation.
* gnu/packages/julia-xyz.scm (julia-ellipsisnotation): New variable.
Diffstat (limited to 'gnu/packages/julia-xyz.scm')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index b574c0125e..8e82f5e847 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 |