;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013, 2014, 2020, 2021 Ludovic Courtès ;;; Copyright © 2014 Federico Beffa ;;; Copyright © 2015, 2019 Ricardo Wurmus ;;; Copyright © 2016, 2017, 2020, 2021 Efraim Flashner ;;; Copyright © 2016, 2017 Ben Woodcroft ;;; Copyright © 2017, 2019, 2020, 2022 Marius Bakke ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2019, 2021 Maxim Cournoyer ;;; Copyright © 2020 John Doe ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; w
aboutsummaryrefslogtreecommitdiff
blob: db126eb4ff5666992f4365c441c6b51d6b256c94 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages visidata)
  #:use-module (gnu packages check)
  #:use-module (gnu packages time)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages xml)
  #:use-module (guix build-system python)
  #:use-module (guix build utils)
  #:use-module (guix download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages))

(define-public visidata
  (package
    (name "visidata")
    (version "2.1")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "visidata" version))
       (sha256
        (base32
         "15y6yif0h610ill57ck85l8n5faw849caw6rhf95rd0x67hkikaa"))))
    (build-system python-build-system)
    (arguments
     '(#:phases
       (modify-phases %standard-phases
         (replace 'check
           (lambda* (#:key tests? #:allow-other-keys)
             (when tests? (invoke "pytest"))
             #t)))))
    (inputs
     `(("dateutil" ,python-dateutil)
       ("requests" ,python-requests)
       ("lxml" ,python-lxml)
       ("openpyxl" ,python-openpyxl)
       ("xlrd" ,python-xlrd)))
    (native-inputs
     `(("pytest" ,python-pytest)))
    (synopsis "Terminal spreadsheet multitool for discovering and arranging data")
    (description
     "VisiData is an interactive multitool for tabular data.  It combines the
clarity of a spreadsheet, the efficiency of the terminal, and the power of
Python, into a lightweight utility which can handle millions of rows.")
    (home-page "https://www.visidata.org/")
    (license license:gpl3)))
:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "doc") #t)) (delete 'configure) (replace 'build (lambda* (#:key (make-flags '()) #:allow-other-keys) (apply invoke "make" "html" make-flags))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (copy-recursively "build/html" (string-append out "/html")) #t)))))) (native-inputs `(("sphinx-build" ,python-sphinx))) (home-page (package-home-page python-cffi)) (synopsis "Documentation for the Python CFFI interface") (description "This package contains HTML documentation for the @code{python-cffi} project.") (license (package-license python-cffi)))) (define-public ruby-ffi (package (name "ruby-ffi") (version "1.15.5") (source (origin ;; Pull from git because the RubyGems release bundles LibFFI, ;; and comes with a gemspec that makes it difficult to unbundle. (method git-fetch) (uri (git-reference (url "https://github.com/ffi/ffi") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1qk55s1zwpdjykwkj9l37m71i5n228i7f8bg3ply3ks9py16m7s6")))) (build-system ruby-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'replace-git-ls-files (lambda _ ;; Do not try to execute git, or include the (un)bundled LibFFI. (substitute* "ffi.gemspec" (("git ls-files -z") "find * -type f -print0 | sort -z") (("lfs \\+?= .*") "lfs = []\n")) (substitute* "Rakefile" (("git .*ls-files -z") "find * -type f -print0 | sort -z") (("LIBFFI_GIT_FILES = .*") "LIBFFI_GIT_FILES = []\n")))) (replace 'build (lambda _ ;; Tests depend on the native extensions, so we build it ;; beforehand without going through the gem machinery. (invoke "rake" "compile") ;; XXX: Ideally we'd use "rake native gem" here to prevent the ;; install phase from needlessly rebuilding everything, but that ;; requires the bundled LibFFI, and the install phase can not ;; deal with such gems anyway. (invoke "gem" "build" "ffi.gemspec"))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? (begin (setenv "MAKE" "make") (setenv "CC" "gcc") (invoke "rspec" "spec")) (format #t "test suite not run~%"))))))) (native-inputs (list ruby-rake-compiler ruby-rspec ruby-rubygems-tasks)) (inputs (list libffi)) (synopsis "Ruby foreign function interface library") (description "Ruby-FFI is a Ruby extension for programmatically loading dynamic libraries, binding functions within them, and calling those functions from Ruby code. Moreover, a Ruby-FFI extension works without changes on Ruby and JRuby.") (home-page "https://wiki.github.com/ffi/ffi") (license bsd-3)))