unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: 51028@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#51028] [PATCH 3/7] gnu: Add julia-dataframes.
Date: Tue,  5 Oct 2021 12:47:32 +0300	[thread overview]
Message-ID: <3ec19604ad2a8df447cc0c26ce4dbd257accb08a.1633411929.git.efraim@flashner.co.il> (raw)
In-Reply-To: <cover.1633411929.git.efraim@flashner.co.il>

* gnu/packages/julia-xyz.scm (julia-dataframes): New variable.
---
 gnu/packages/julia-xyz.scm | 53 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 5925ca2417..33f09a34d3 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -806,6 +806,59 @@ (define-public julia-dataapi
 dependency on it.")
     (license license:expat)))
 
+(define-public julia-dataframes
+  (package
+    (name "julia-dataframes")
+    (version "1.2.2")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaData/DataFrames.jl")
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1bk0amrghgjrkyn1mm4ac23swwbgszl1d0qyl9137qj5zvv9dasp"))))
+    (build-system julia-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'skip-failing-test
+           (lambda _
+             ;; Tests with non-standard colors.
+             (substitute* "test/show.jl"
+               (("test (sprint\\(show, df, context=:color=>true)" _ test)
+                (string-append "test_nowarn " test)))
+             (substitute* "test/io.jl"
+               (("testset \\\"improved.*" all)
+                (string-append all "return\n")))
+             (substitute* "test/join.jl"
+               (("test (levels\\(outerjoin\\(B)" _ test)
+                (string-append "test_nowarn " test)))
+             #t)))))
+    (propagated-inputs
+     `(("julia-dataapi" ,julia-dataapi)
+       ("julia-invertedindices" ,julia-invertedindices)
+       ("julia-iteratorinterfaceextensions" ,julia-iteratorinterfaceextensions)
+       ("julia-missings" ,julia-missings)
+       ("julia-pooledarrays" ,julia-pooledarrays)
+       ("julia-prettytables" ,julia-prettytables)
+       ("julia-reexport" ,julia-reexport)
+       ("julia-sortingalgorithms" ,julia-sortingalgorithms)
+       ("julia-tables" ,julia-tables)
+       ("julia-tabletraits" ,julia-tabletraits)))
+    (native-inputs
+     `(("julia-categoricalarrays" ,julia-categoricalarrays)
+       ("julia-combinatorics" ,julia-combinatorics)
+       ("julia-datastructures" ,julia-datastructures)
+       ("julia-datavalues" ,julia-datavalues)
+       ("julia-offsetarrays" ,julia-offsetarrays)
+       ("julia-unitful" ,julia-unitful)))
+    (home-page "https://dataframes.juliadata.org/stable/")
+    (synopsis "In-memory tabular data")
+    (description "Tools for working with tabular data in Julia.")
+    (license license:expat)))
+
 (define-public julia-datastructures
   (package
     (name "julia-datastructures")
-- 
2.33.0





  parent reply	other threads:[~2021-10-05  9:51 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-05  9:35 [bug#51028] [PATCH 0/7] More julia packages Efraim Flashner
2021-10-05  9:47 ` [bug#51028] [PATCH 1/7] gnu: Add julia-latexstrings Efraim Flashner
2021-10-05  9:47 ` [bug#51028] [PATCH 2/7] gnu: Add julia-pyplot Efraim Flashner
2021-10-11 11:22   ` [bug#51028] [PATCH 0/7] More julia packages zimoun
2021-10-05  9:47 ` Efraim Flashner [this message]
2021-10-11 11:51   ` zimoun
2021-10-05  9:47 ` [bug#51028] [PATCH 4/7] gnu: Add julia-bson Efraim Flashner
2021-10-05  9:47 ` [bug#51028] [PATCH 5/7] gnu: Add julia-expronicon Efraim Flashner
2021-10-05  9:47 ` [bug#51028] [PATCH 6/7] gnu: Add julia-configurations Efraim Flashner
2021-10-11 12:01   ` [bug#51028] [PATCH 0/7] More julia packages zimoun
2021-10-05  9:47 ` [bug#51028] [PATCH 7/7] gnu: Add julia-structarrays Efraim Flashner
2021-10-11 12:03 ` [bug#51028] [PATCH 0/7] More julia packages zimoun
2021-10-12  5:44   ` bug#51028: " Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3ec19604ad2a8df447cc0c26ce4dbd257accb08a.1633411929.git.efraim@flashner.co.il \
    --to=efraim@flashner.co.il \
    --cc=51028@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).