gnu: julia-changesofvariables: Update to 0.1.9.

* gnu/packages/julia-xyz.scm (julia-changesofvariables): Update to 0.1.9.

Change-Id: I5bb8acad2d4ff0f7c66d86b8353e7e1f8698a55a
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Spencer King 2024-10-25 22:34:48 +00:00 committed by Ludovic Courtès
parent 9a7899738a
commit 993fd945d1
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1028,7 +1028,7 @@ dependencies, while keeping @code{ChainRulesCore.jl} as light-weight as possible
(define-public julia-changesofvariables (define-public julia-changesofvariables
(package (package
(name "julia-changesofvariables") (name "julia-changesofvariables")
(version "0.1.4") (version "0.1.9")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -1037,17 +1037,23 @@ dependencies, while keeping @code{ChainRulesCore.jl} as light-weight as possible
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1migyhiqr1rq496302wlkb0s5l8zwqs97ajfkip0jzpvrk2s2xxy")))) (base32 "0szkmz7r41hi4zbxli5m9g5r3gyg87y0vc0rd1s1rp28p34a3grw"))))
(build-system julia-build-system) (build-system julia-build-system)
(arguments (arguments
;; Pulls in ForwardDiff, would have a cyclical ;; Pulls in ForwardDiff, would have a cyclical
;; dependency with LogExpFunctions. ;; dependency with LogExpFunctions.
(list #:tests? #f)) (list
(propagated-inputs #:tests? #f
(list julia-chainrulescore)) #:julia-package-name "ChangesOfVariables"
#:julia-package-uuid "9e997f8a-9a97-42d5-a9f1-ce6bfc15e2c0"
#:julia-package-dependencies
#~(list '("LinearAlgebra" . "37e2e46d-f89d-539d-b4ee-838fcccc9c8e")
'("Test" . "8dfed614-e22c-5e08-85e1-65c5234f0b40"))))
(propagated-inputs (list julia-chainrulescore julia-inversefunctions))
(home-page "https://github.com/JuliaMath/ChangesOfVariables.jl") (home-page "https://github.com/JuliaMath/ChangesOfVariables.jl")
(synopsis "Interface for transformation functions in Julia") (synopsis "Interface for transformation functions in Julia")
(description "This package defines functionality to calculate volume element (description
"This package defines functionality to calculate volume element
changes for functions that perform a change of variables (like coordinate changes for functions that perform a change of variables (like coordinate
transformations).") transformations).")
(license license:expat))) (license license:expat)))