From a56affbdd8b44aa68f504563d8a552398a3ca937 Mon Sep 17 00:00:00 2001 From: Spencer King Date: Sat, 31 Aug 2024 00:59:31 +0000 Subject: [PATCH] gnu: Add julia-progressbars. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/julia-xyz.scm (julia-progressbars): New variable. Change-Id: Idd2b6a8aaaec186c01ecbc852d03f3df84bab8b5 Signed-off-by: Ludovic Courtès --- gnu/packages/julia-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 56a3c9772d..1743d27226 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2021 Vinicius Monego ;;; Copyright © 2021 jgart ;;; Copyright © 2023 Sharlatan Hellseher +;;; Copyright © 2024 Spencer King ;;; ;;; 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.") (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 (package (name "julia-pycall")