me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-itertools.

* gnu/packages/julia-xyz.scm (julia-itertools): New variable.
master
Efraim Flashner 2021-06-08 17:51:52 +03:00
parent 63a8337598
commit 503c2039a2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -1487,6 +1487,26 @@ Cassette.")
extensions to the iterator interface.")
(license license:expat)))
(define-public julia-itertools
(package
(name "julia-itertools")
(version "1.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaCollections/IterTools.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0haf974kcqj6arv4if97ahs4w3dmvslh6ab3hl57r9s41ic36xdq"))))
(build-system julia-build-system)
(home-page "https://github.com/JuliaCollections/IterTools.jl")
(synopsis "Common functional iterator patterns")
(description
"Common functional iterator patterns (formerly @code{Iterators.jl}).")
(license license:expat)))
(define-public julia-json
(package
(name "julia-json")