gnu: julia-arraylayouts: Update to 0.8.16.
* gnu/packages/julia-xyz.scm (julia-arraylayouts): Update to 0.8.16. [arguments]: Add a phase to mark a test broken. [native-inputs]: Add julia-stablerngs.
parent
5b99829b55
commit
a5bdf0a9e7
|
@ -192,7 +192,7 @@ no issues with the upgrade.")
|
||||||
(define-public julia-arraylayouts
|
(define-public julia-arraylayouts
|
||||||
(package
|
(package
|
||||||
(name "julia-arraylayouts")
|
(name "julia-arraylayouts")
|
||||||
(version "0.7.6")
|
(version "0.8.16")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -201,10 +201,20 @@ no issues with the upgrade.")
|
||||||
(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 "05q62pks8j23pgbrfny072rrwzrz6q19l68srnjxxv39ncmdmrvg"))))
|
(base32 "1j11jid4scw9icrbr8g6myp17nabjzmf4f40cichb20lzf1agz8l"))))
|
||||||
(build-system julia-build-system)
|
(build-system julia-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'adjust-tests
|
||||||
|
(lambda _
|
||||||
|
(substitute* "test/test_layoutarray.jl"
|
||||||
|
(("@test all\\(B") "@test_broken all(B")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list julia-fillarrays))
|
(list julia-fillarrays))
|
||||||
|
(native-inputs
|
||||||
|
(list julia-stablerngs))
|
||||||
(home-page "https://github.com/JuliaMatrices/ArrayLayouts.jl")
|
(home-page "https://github.com/JuliaMatrices/ArrayLayouts.jl")
|
||||||
(synopsis "Array layouts and general fast linear algebra")
|
(synopsis "Array layouts and general fast linear algebra")
|
||||||
(description "This package implements a trait-based framework for describing
|
(description "This package implements a trait-based framework for describing
|
||||||
|
|
Reference in New Issue