me
/
guix
Archived
1
0
Fork 0

gnu: julia-prettytables: Update to 2.1.2.

* gnu/packages/julia-xyz.scm (julia-prettytables): Update to 2.1.2.
[arguments]: Rename custom phase 'skip-color-tests to
'skip-tests-manipulating-terminal-display and skip some more tests.
[propagated-inputs]: Add julia-offsetarrays, julia-stringmanipulation.
master
Efraim Flashner 2023-09-06 14:36:33 +03:00
parent 92820c1732
commit c21499fce7
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 12 additions and 4 deletions

View File

@ -4860,7 +4860,7 @@ everything from run time algorithm choice to code generation at compile time.")
(define-public julia-prettytables (define-public julia-prettytables
(package (package
(name "julia-prettytables") (name "julia-prettytables")
(version "1.0.1") (version "2.1.2")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -4869,20 +4869,28 @@ everything from run time algorithm choice to code generation at compile time.")
(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 "1d1sd87kkwbar3l608h0adzws42cwdrmp1idxx7an6mfqcsdrijw")))) (base32 "029niwxgql9rcyx0rxcyhmwkzxciccji4hb59g6752ixam65wxkh"))))
(build-system julia-build-system) (build-system julia-build-system)
(arguments (arguments
(list (list
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'link-depot 'skip-color-tests (add-after 'link-depot 'skip-tests-manipulating-terminal-display
(lambda _ (lambda _
(substitute* "test/text_backend.jl" (substitute* "test/text_backend.jl"
((".*colors\\.jl.*") ""))))))) ((".*colors\\.jl.*") "")
((".*custom_cells\\.jl.*") ""))
(substitute* "test/general.jl"
((".*string\\.jl.*") ""))
(substitute* "test/text_backend/issues.jl"
(("testset.*161.*begin" all)
(string-append all " return"))))))))
(propagated-inputs (propagated-inputs
(list julia-crayons (list julia-crayons
julia-formatting julia-formatting
julia-offsetarrays
julia-reexport julia-reexport
julia-stringmanipulation
julia-tables)) julia-tables))
(home-page "https://github.com/ronisbr/PrettyTables.jl") (home-page "https://github.com/ronisbr/PrettyTables.jl")
(synopsis "Print data in formatted tables") (synopsis "Print data in formatted tables")