gnu: Add julia-iteratorinterfaceextensions.

* gnu/packages/julia-xyz.scm (julia-iteratorinterfaceextensions-1.0.0): New variable.
This commit is contained in:
nixo 2019-10-10 23:32:52 +02:00
parent 478e6b3bc5
commit 3b78371bb8
1 changed files with 22 additions and 0 deletions

View File

@ -401,3 +401,25 @@ you expect,
(synopsis "Julia interface to the Expat XML parser library") (synopsis "Julia interface to the Expat XML parser library")
(description "Run XPath queries on fully parsed XML tree.") (description "Run XPath queries on fully parsed XML tree.")
(license license:expat))) (license license:expat)))
(define-public julia-iteratorinterfaceextensions
(package
(name "julia-iteratorinterfaceextensions")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url
"https://github.com/queryverse/IteratorInterfaceExtensions.jl")
(commit (string-append "v" version))))
(file-name "IteratorInterfaceExtensions")
(sha256
(base32 "1slpay1dhja8f9gy6z7b3psgvgcknn963dvfqqakvg1grk9ppa09"))))
(build-system julia-build-system)
(home-page "https://github.com/queryverse/IteratorInterfaceExtensions.jl")
(synopsis "@code{IteratorInterfaceExtensions} defines a small number of
extensions to the iterator interface")
(description "@code{IteratorInterfaceExtensions} is a Julia package that
adds @code{isiterable} and @code{getiterator} to the iterator interface.")
(license license:expat)))