gnu: Add julia-polylog.

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

Change-Id: I0ec8cec07552ef297fc1ecb086678fe9edfd051c
Signed-off-by: Simon Tournier <zimon.toutoune@gmail.com>
This commit is contained in:
King, Spencer via Guix-patches via 2025-03-06 06:18:41 +00:00 committed by Simon Tournier
parent 535efb3c9a
commit c8bde3c672
No known key found for this signature in database
GPG key ID: 92F1D22C608EE7E5

View file

@ -5218,6 +5218,27 @@ the test cases.")
plotting components.")
(license license:expat)))
(define-public julia-polylog
(package
(name "julia-polylog")
(version "2.5.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Expander/PolyLog.jl")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1rfmlh5rvgh84qvvachqgvy0ra5yym28vj09xlw9cq19bkyids64"))))
(build-system julia-build-system)
(home-page "https://github.com/Expander/PolyLog.jl")
(synopsis "Implementation of polylogarithms in Julia")
(description
"This package implements real and complex polylogarithms,
including the real and complex dilogarithm and trilogarithm in Julia.")
(license license:expat)))
(define-public julia-pooledarrays
(package
(name "julia-pooledarrays")