diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 12:48:45 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 12:54:49 +0300 |
commit | d2d1f8bfae5bd8b60178141a7199189356fd892e (patch) | |
tree | 1ea2b380b06ab4fdb3c5f8b1f5ed0514cdf2f5b9 | |
parent | 9bb2e649a66271f00756143c2a07015e83f471b3 (diff) | |
download | guix-d2d1f8bfae5bd8b60178141a7199189356fd892e.tar guix-d2d1f8bfae5bd8b60178141a7199189356fd892e.tar.gz |
gnu: Add julia-prettytables.
* gnu/packages/julia-xyz.scm (julia-prettytables): New variable.
-rw-r--r-- | gnu/packages/julia-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 53bd0e0b64..816ca9c85b 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1639,6 +1639,39 @@ plotting components.") purposes of compression when there are few unique elements.") (license license:expat))) +(define-public julia-prettytables + (package + (name "julia-prettytables") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ronisbr/PrettyTables.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d1sd87kkwbar3l608h0adzws42cwdrmp1idxx7an6mfqcsdrijw")))) + (build-system julia-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'skip-color-tests + (lambda _ + (substitute* "test/text_backend.jl" + ((".*colors\\.jl.*") "")) + #t))))) + (propagated-inputs + `(("julia-crayons" ,julia-crayons) + ("julia-formatting" ,julia-formatting) + ("julia-reexport" ,julia-reexport) + ("julia-tables" ,julia-tables))) + (home-page "https://github.com/ronisbr/PrettyTables.jl") + (synopsis "Print data in formatted tables") + (description "This package has the purpose to print data in matrices in a +human-readable format.") + (license license:expat))) + (define-public julia-quadmath (package (name "julia-quadmath") |