gnu: Add julia-progressbars.

* gnu/packages/julia-xyz.scm (julia-progressbars): New variable.

Change-Id: Idd2b6a8aaaec186c01ecbc852d03f3df84bab8b5
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Spencer King 2024-08-31 00:59:31 +00:00 committed by Ludovic Courtès
parent 1b2f42f26b
commit a56affbdd8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -5,6 +5,7 @@
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 jgart <jgart@dismail.de> ;;; Copyright © 2021 jgart <jgart@dismail.de>
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2024 Spencer King <spencer.king@geneoscopy.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -4917,6 +4918,27 @@ everything from run time algorithm choice to code generation at compile time.")
human-readable format.") human-readable format.")
(license license:expat))) (license license:expat)))
(define-public julia-progressbars
(package
(name "julia-progressbars")
(version "1.5.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cloud-oak/ProgressBars.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0y4i2kdir0wxr3amafidr3585w8lj4s0cqfcbl690a8jvw6rs3jw"))))
(build-system julia-build-system)
(home-page "https://github.com/cloud-oak/ProgressBars.jl")
(synopsis "Progress bar for Julia")
(description
"This package provides a fast, extensible progress bar for Julia.
This can help users track the progress of long-running tasks.")
(license license:mpl2.0)))
(define-public julia-pycall (define-public julia-pycall
(package (package
(name "julia-pycall") (name "julia-pycall")