Merge branch 'master' into staging
[jackhill/guix/guix.git] / gnu / packages / databases.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2018 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2012, 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2013, 2017 Cyril Roelandt <tipecaml@gmail.com>
5 ;;; Copyright © 2014, 2016 David Thompson <davet@gnu.org>
6 ;;; Copyright © 2014, 2015, 2016, 2018 Mark H Weaver <mhw@netris.org>
7 ;;; Copyright © 2014, 2015 Eric Bavier <bavier@member.fsf.org>
8 ;;; Copyright © 2015, 2016 Sou Bunnbu <iyzsong@gmail.com>
9 ;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
10 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
11 ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
12 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
13 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
14 ;;; Copyright © 2016, 2017 ng0 <ng0@n0.is>
15 ;;; Copyright © 2016, 2017, 2018 Roel Janssen <roel@gnu.org>
16 ;;; Copyright © 2016 David Craven <david@craven.ch>
17 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
18 ;;; Copyright © 2016 Andy Patterson <ajpatter@uwaterloo.ca>
19 ;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org>
20 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
21 ;;; Copyright © 2017, 2018 Julien Lepiller <julien@lepiller.eu>
22 ;;; Copyright © 2017, 2020 Thomas Danckaert <post@thomasdanckaert.be>
23 ;;; Copyright © 2017 Jelle Licht <jlicht@fsfe.org>
24 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
25 ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
26 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
27 ;;; Copyright © 2017, 2018 Alex Vong <alexvong1995@gmail.com>
28 ;;; Copyright © 2017, 2018 Ben Woodcroft <donttrustben@gmail.com>
29 ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
30 ;;; Copyright © 2017, 2018 Pierre Langlois <pierre.langlois@gmx.com>
31 ;;; Copyright © 2015, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
32 ;;; Copyright © 2017 Kristofer Buffington <kristoferbuffington@gmail.com>
33 ;;; Copyright © 2018 Amirouche Boubekki <amirouche@hypermove.net>
34 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
35 ;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
36 ;;; Copyright © 2019 Jack Hill <jackhill@jackhill.us>
37 ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
38 ;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com>
39 ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
40 ;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
41 ;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
42 ;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
43 ;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
44 ;;; Copyright © 2020 Lars-Dominik Braun <ldb@leibniz-psychology.org>
45 ;;;
46 ;;; This file is part of GNU Guix.
47 ;;;
48 ;;; GNU Guix is free software; you can redistribute it and/or modify it
49 ;;; under the terms of the GNU General Public License as published by
50 ;;; the Free Software Foundation; either version 3 of the License, or (at
51 ;;; your option) any later version.
52 ;;;
53 ;;; GNU Guix is distributed in the hope that it will be useful, but
54 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
55 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
56 ;;; GNU General Public License for more details.
57 ;;;
58 ;;; You should have received a copy of the GNU General Public License
59 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
60
61 (define-module (gnu packages databases)
62 #:use-module (gnu packages)
63 #:use-module (gnu packages admin)
64 #:use-module (gnu packages algebra)
65 #:use-module (gnu packages autotools)
66 #:use-module (gnu packages avahi)
67 #:use-module (gnu packages base)
68 #:use-module (gnu packages bash)
69 #:use-module (gnu packages bison)
70 #:use-module (gnu packages boost)
71 #:use-module (gnu packages check)
72 #:use-module (gnu packages cmake)
73 #:use-module (gnu packages compression)
74 #:use-module (gnu packages crypto)
75 #:use-module (gnu packages curl)
76 #:use-module (gnu packages cyrus-sasl)
77 #:use-module (gnu packages dbm)
78 #:use-module (gnu packages emacs)
79 #:use-module (gnu packages flex)
80 #:use-module (gnu packages gcc)
81 #:use-module (gnu packages gettext)
82 #:use-module (gnu packages glib)
83 #:use-module (gnu packages gnupg)
84 #:use-module (gnu packages guile)
85 #:use-module (gnu packages time)
86 #:use-module (gnu packages golang)
87 #:use-module (gnu packages jemalloc)
88 #:use-module (gnu packages language)
89 #:use-module (gnu packages libevent)
90 #:use-module (gnu packages linux)
91 #:use-module (gnu packages man)
92 #:use-module (gnu packages ncurses)
93 #:use-module (gnu packages onc-rpc)
94 #:use-module (gnu packages parallel)
95 #:use-module (gnu packages pcre)
96 #:use-module (gnu packages perl)
97 #:use-module (gnu packages perl-check)
98 #:use-module (gnu packages perl-web)
99 #:use-module (gnu packages pkg-config)
100 #:use-module (gnu packages popt)
101 #:use-module (gnu packages python)
102 #:use-module (gnu packages python-crypto)
103 #:use-module (gnu packages python-web)
104 #:use-module (gnu packages python-science)
105 #:use-module (gnu packages python-xyz)
106 #:use-module (gnu packages rdf)
107 #:use-module (gnu packages readline)
108 #:use-module (gnu packages ruby)
109 #:use-module (gnu packages serialization)
110 #:use-module (gnu packages sphinx)
111 #:use-module (gnu packages sqlite)
112 #:use-module (gnu packages tcl)
113 #:use-module (gnu packages terminals)
114 #:use-module (gnu packages textutils)
115 #:use-module (gnu packages tls)
116 #:use-module (gnu packages valgrind)
117 #:use-module (gnu packages web)
118 #:use-module (gnu packages xml)
119 #:use-module ((guix licenses) #:prefix license:)
120 #:use-module (guix packages)
121 #:use-module (guix download)
122 #:use-module (guix bzr-download)
123 #:use-module (guix git-download)
124 #:use-module (guix build-system emacs)
125 #:use-module (guix build-system gnu)
126 #:use-module (guix build-system go)
127 #:use-module (guix build-system perl)
128 #:use-module (guix build-system python)
129 #:use-module (guix build-system ruby)
130 #:use-module (guix build-system cmake)
131 #:use-module (guix build-system scons)
132 #:use-module (guix build-system trivial)
133 #:use-module (guix utils)
134 #:use-module (srfi srfi-1)
135 #:use-module (srfi srfi-26)
136 #:use-module (ice-9 match))
137
138 (define-public 4store
139 (package
140 (name "4store")
141 (version "1.1.6")
142 (source (origin
143 (method git-fetch)
144 (uri (git-reference
145 (url "https://github.com/4store/4store.git")
146 (commit (string-append "v" version))))
147 (file-name (git-file-name name version))
148 (sha256
149 (base32 "1kzdfmwpzy64cgqlkcz5v4klwx99w0jk7afckyf7yqbqb4rydmpk"))
150 (patches (search-patches "4store-unset-preprocessor-directive.patch"
151 "4store-fix-buildsystem.patch"))))
152 (build-system gnu-build-system)
153 (native-inputs
154 `(("perl" ,perl)
155 ("python" ,python-2)
156 ("autoconf" ,autoconf)
157 ("automake" ,automake)
158 ("gettext" ,gettext-minimal)
159 ("libtool" ,libtool)
160 ("pcre" ,pcre "bin") ;for 'pcre-config'
161 ("pkg-config" ,pkg-config)))
162 (inputs
163 `(("glib" ,glib)
164 ("rasqal" ,rasqal)
165 ("libxml2" ,libxml2)
166 ("raptor2" ,raptor2)
167 ("readline" ,readline)
168 ("avahi" ,avahi)
169 ("cyrus-sasl" ,cyrus-sasl)
170 ("openssl" ,openssl)
171 ("util-linux" ,util-linux)))
172 ;; http://www.4store.org has been down for a while now.
173 (home-page "https://github.com/4store/4store")
174 (synopsis "Clustered RDF storage and query engine")
175 (description "4store is a RDF/SPARQL store written in C, supporting
176 either single machines or networked clusters.")
177 (license license:gpl3+)))
178
179 (define-public go-gopkg.in-mgo.v2
180 (package
181 (name "go-gopkg.in-mgo.v2")
182 (version "2016.08.01")
183 (source (origin
184 (method git-fetch)
185 (uri (git-reference
186 (url "https://github.com/go-mgo/mgo")
187 (commit (string-append "r" version))))
188 (file-name (git-file-name name version))
189 (sha256
190 (base32
191 "0rwbi1z63w43b0z9srm8m7iz1fdwx7bq7n2mz862d6liiaqa59jd"))))
192 (build-system go-build-system)
193 (arguments
194 `(#:import-path "gopkg.in/mgo.v2"
195 ;; TODO: The tests fail as MongoDB fails to start
196 ;; Error parsing command line: unrecognised option '--chunkSize'
197 #:tests? #f
198 #:phases
199 (modify-phases %standard-phases
200 (delete 'reset-gzip-timestamps)
201 (add-before 'check 'start-mongodb
202 (lambda* (#:key tests? #:allow-other-keys)
203 (when tests?
204 (with-directory-excursion "src/gopkg.in/mgo.v2"
205 (invoke "make" "startdb")))
206 #t))
207 (add-after 'check 'stop'mongodb
208 (lambda* (#:key tests? #:allow-other-keys)
209 (when tests?
210 (with-directory-excursion "src/gopkg.in/mgo.v2"
211 (invoke "make" "stopdb")))
212 #t)))))
213 (native-inputs
214 `(("go-gopkg.in-check.v1" ,go-gopkg.in-check.v1)
215 ("mongodb" ,mongodb)
216 ("daemontools" ,daemontools)))
217 (synopsis "@code{mgo} offers a rich MongoDB driver for Go.")
218 (description
219 "@code{mgo} (pronounced as mango) is a MongoDB driver for the Go language.
220 It implements a rich selection of features under a simple API following
221 standard Go idioms.")
222 (home-page "https://labix.org/mgo")
223 (license license:bsd-2)))
224
225 (define-public ephemeralpg
226 (package
227 (name "ephemeralpg")
228 (version "3.0")
229 (source
230 (origin
231 (method url-fetch)
232 (uri (string-append
233 "https://eradman.com/ephemeralpg/code/ephemeralpg-"
234 version ".tar.gz"))
235 (sha256
236 (base32 "1j0g7g114ma7y7sadbng5p1ss1zsm9zpicm77qspym6565733vvh"))))
237 (build-system gnu-build-system)
238 (arguments
239 '(#:make-flags (list "CC=gcc"
240 (string-append "PREFIX=" %output))
241 #:phases
242 (modify-phases %standard-phases
243 (delete 'configure) ; no configure script
244 (add-after 'install 'wrap
245 (lambda* (#:key inputs outputs #:allow-other-keys)
246 (let ((out (assoc-ref outputs "out")))
247 (wrap-program (string-append out "/bin/pg_tmp")
248 `("PATH" ":" prefix
249 (,(string-append (assoc-ref inputs "util-linux")
250 "/bin")
251 ,(string-append (assoc-ref inputs "postgresql")
252 "/bin")
253 ;; For getsocket.
254 ,(string-append out "/bin")))))
255 #t)))
256 #:test-target "test"))
257 (inputs
258 `(("postgresql" ,postgresql)
259 ("util-linux" ,util-linux)))
260 (native-inputs
261 ;; For tests.
262 `(("ruby" ,ruby)
263 ("which" ,which)))
264 (home-page "https://eradman.com/ephemeralpg/")
265 (synopsis "Run temporary PostgreSQL databases")
266 (description
267 "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks
268 like running software test suites. Temporary databases created with
269 @code{pg_tmp} have a limited shared memory footprint and are automatically
270 garbage-collected after a configurable number of seconds (the default is
271 60).")
272 (license license:isc)))
273
274 (define-public es-dump-restore
275 (package
276 (name "es-dump-restore")
277 (version "2.1.0")
278 (source
279 (origin
280 (method url-fetch)
281 (uri (rubygems-uri "es_dump_restore" version))
282 (sha256
283 (base32
284 "020yk7f1hw48clmf5501z3xv9shsdchyymcv0y2cci2c1xvr1mim"))))
285 (build-system ruby-build-system)
286 (arguments
287 '(#:tests? #f)) ;; No testsuite.
288 (propagated-inputs
289 `(("ruby-httpclient" ,ruby-httpclient)
290 ("ruby-multi-json" ,ruby-multi-json)
291 ("ruby-progress_bar" ,ruby-progress_bar)
292 ("ruby-rubyzip" ,ruby-rubyzip)
293 ("ruby-thor" ,ruby-thor)))
294 (synopsis "Utility for dumping and restoring ElasticSearch indexes")
295 (description
296 "This package provides a utility for dumping the contents of an
297 ElasticSearch index to a compressed file and restoring the dumpfile back to an
298 ElasticSearch server")
299 (home-page "https://github.com/patientslikeme/es_dump_restore")
300 (license license:expat)))
301
302 (define-public leveldb
303 (package
304 (name "leveldb")
305 (version "1.22")
306 (source (origin
307 (method git-fetch)
308 (uri (git-reference
309 (url "https://github.com/google/leveldb")
310 (commit version)))
311 (file-name (git-file-name name version))
312 (sha256
313 (base32
314 "0qrnhiyq7r4wa1a4wi82zgns35smj94mcjsc7kfs1k6ia9ys79z7"))))
315 (build-system cmake-build-system)
316 (arguments
317 `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON" "-DLEVELDB_BUILD_TESTS=ON")))
318 (inputs
319 `(("snappy" ,snappy)))
320 (home-page "https://github.com/google/leveldb")
321 (synopsis "Fast key-value storage library")
322 (description
323 "LevelDB is a fast key-value storage library that provides an ordered
324 mapping from string keys to string values.")
325 (license license:bsd-3)))
326
327 (define-public memcached
328 (package
329 (name "memcached")
330 (version "1.5.20")
331 (source
332 (origin
333 (method url-fetch)
334 (uri (string-append
335 "https://memcached.org/files/memcached-" version ".tar.gz"))
336 (sha256
337 (base32 "1r511qr95q0ywdaql3pdjiwzkfqxhhfzb13ilvl7mznfm4iv1myg"))))
338 (build-system gnu-build-system)
339 (inputs
340 `(("libevent" ,libevent)
341 ("cyrus-sasl" ,cyrus-sasl)))
342 (home-page "https://memcached.org/")
343 (synopsis "In-memory caching service")
344 (description "Memcached is an in-memory key-value store. It has a small
345 and generic API, and was originally intended for use with dynamic web
346 applications.")
347 (license license:bsd-3)))
348
349 (define-public libmemcached
350 (package
351 (name "libmemcached")
352 (version "1.0.18")
353 ;; We build from the sources since we want to build the extra HTML
354 ;; documentation which is not included with the release.
355 (source (origin
356 (method bzr-fetch)
357 (uri (bzr-reference
358 (url "lp:libmemcached/1.0")
359 (revision (string-append "tag:" version))))
360 (file-name (string-append name "-" version "-checkout"))
361 (sha256
362 (base32
363 "1842s4dxdh21gdr46q4dgxigidcs6dkqnbnqjwb9l8r0bqx5nb10"))
364 (patches
365 (search-patches "libmemcached-build-with-gcc7.patch"))))
366 (build-system gnu-build-system)
367 (native-inputs
368 `(("memcached" ,memcached)
369 ("libtool" ,libtool)
370 ("autoconf" ,autoconf)
371 ("automake" ,automake)
372 ("bison" ,bison)
373 ("flex" ,flex)
374 ("perl" ,perl)
375 ("python-sphinx" ,python-sphinx))) ;to build the HTML doc.
376 (inputs
377 `(("libevent" ,libevent)
378 ("cyrus-sasl" ,cyrus-sasl)))
379 (outputs '("out" "doc"))
380 (arguments
381 '(#:phases
382 (modify-phases %standard-phases
383 (add-before 'bootstrap 'fix-configure.ac
384 ;; Move the AC_CONFIG_AUX_DIR macro use under AC_INIT, otherwise we
385 ;; get the error ``configure: error: cannot find install-sh,
386 ;; install.sh, or shtool in "." "./.." "./../.."`` (see:
387 ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=19539 and
388 ;; https://bugs.launchpad.net/libmemcached/+bug/1803922).
389 (lambda _
390 (delete-file "bootstrap.sh") ;not useful in the context of Guix
391 (substitute* "configure.ac"
392 (("^AC_CONFIG_AUX_DIR\\(\\[build-aux\\]\\).*") "")
393 (("(^AC_INIT.*)" anchor)
394 (string-append anchor "AC_CONFIG_AUX_DIR([build-aux])\n")))
395 #t))
396 (add-before 'bootstrap 'disable-failing-tests
397 ;; See: https://bugs.launchpad.net/libmemcached/+bug/1803926
398 (lambda _
399 ;; Mark some heavily failing test suites as expected to fail.
400 (substitute* "Makefile.am"
401 (("(XFAIL_TESTS =[^\n]*)" xfail_tests)
402 (string-append xfail_tests " tests/testudp"
403 " tests/libmemcached-1.0/testapp"
404 " tests/libmemcached-1.0/testsocket")))
405 ;; Disable two tests of the unittest test suite.
406 (substitute* "libtest/unittest.cc"
407 ((".*echo_fubar_BINARY \\},.*") "")
408 ((".*application_doesnotexist_BINARY \\},.*") ""))
409 #t))
410 (add-after 'disable-dns-tests 'build-and-install-html-doc
411 (lambda* (#:key outputs #:allow-other-keys)
412 (let ((html (string-append (assoc-ref outputs "doc")
413 "/share/doc/libmemcached/html/")))
414 (invoke "make" "install-html")
415 ;; Cleanup useless files.
416 (for-each delete-file-recursively
417 (map (lambda (x) (string-append html x))
418 '("_sources" ".doctrees" ".buildinfo"))))
419 #t)))))
420 (home-page "https://libmemcached.org/")
421 (synopsis "C++ library for memcached")
422 (description "libMemcached is a library to use memcached in C/C++
423 applications. It comes with a complete reference guide and documentation of
424 the API, and provides features such as:
425 @itemize
426 @item Asynchronous and synchronous transport support
427 @item Consistent hashing and distribution
428 @item Tunable hashing algorithm to match keys
429 @item Access to large object support
430 @item Local replication
431 @end itemize")
432 (license license:bsd-3)))
433
434 (define-public python-pylibmc
435 (package
436 (name "python-pylibmc")
437 (version "1.6.1")
438 (source
439 (origin
440 (method url-fetch)
441 (uri (pypi-uri "pylibmc" version))
442 (sha256
443 (base32 "1sg7d9j0v6g3xg3finf4l1hb72c13vcyyi6rqrc9shbx903d93ca"))))
444 (build-system python-build-system)
445 (arguments
446 '(#:phases
447 (modify-phases %standard-phases
448 (add-before 'check 'start-memcached-daemon
449 ;; The test suite requires a memcached server.
450 (lambda _
451 (invoke "memcached" "-d"))))))
452 (native-inputs
453 `(("memcached" ,memcached)
454 ("python-nose" ,python-nose)))
455 (inputs
456 `(("libmemcached" ,libmemcached)
457 ("zlib" ,zlib)
458 ("cyrus-sasl" ,cyrus-sasl)))
459 (home-page "http://sendapatch.se/projects/pylibmc/")
460 (synopsis "Python client for memcached")
461 (description
462 "@code{pylibmc} is a client in Python for memcached. It is a wrapper
463 around TangentOrg’s libmemcached library, and can be used as a drop-in
464 replacement for the code@{python-memcached} library.")
465 (license license:bsd-3)))
466
467 (define-public python2-pylibmc
468 (package-with-python2 python-pylibmc))
469
470 (define-public mongodb
471 (package
472 (name "mongodb")
473 (version "3.4.10")
474 (source (origin
475 (method url-fetch)
476 (uri (string-append "https://github.com/mongodb/mongo/archive/r"
477 version ".tar.gz"))
478 (file-name (string-append name "-" version ".tar.gz"))
479 (sha256
480 (base32 "0676lvkljj7a5hdhv78dbykqnqrj9lbn9799mi84b8vbnzsq961r"))
481 (modules '((guix build utils)))
482 (snippet
483 '(begin
484 (for-each (lambda (dir)
485 (delete-file-recursively
486 (string-append "src/third_party/" dir)))
487 '("pcre-8.41" "scons-2.5.0" "snappy-1.1.3"
488 "valgrind-3.11.0" "wiredtiger"
489 "yaml-cpp-0.5.3" "zlib-1.2.8"))
490 #t))
491 (patches
492 (list
493 (search-patch "mongodb-support-unknown-linux-distributions.patch")))))
494 (build-system scons-build-system)
495 (inputs
496 `(("openssl" ,openssl-1.0)
497 ("pcre" ,pcre)
498 ,@(match (%current-system)
499 ((or "x86_64-linux" "aarch64-linux" "mips64el-linux")
500 `(("wiredtiger" ,wiredtiger)))
501 (_ `()))
502 ("yaml-cpp" ,yaml-cpp)
503 ("zlib" ,zlib)
504 ("snappy" ,snappy)))
505 (native-inputs
506 `(("valgrind" ,valgrind)
507 ("perl" ,perl)
508 ("python" ,python-2)
509 ("python2-pymongo" ,python2-pymongo)
510 ("python2-pyyaml" ,python2-pyyaml)
511 ("tzdata" ,tzdata-for-tests)))
512 (arguments
513 `(#:scons ,scons-python2
514 #:phases
515 (let ((common-options
516 `(;; "--use-system-tcmalloc" TODO: Missing gperftools
517 "--use-system-pcre"
518 ;; wiredtiger is 64-bit only
519 ,,(if (any (cute string-prefix? <> (or (%current-target-system)
520 (%current-system)))
521 '("i686-linux" "armhf-linux"))
522 ``"--wiredtiger=off"
523 ``"--use-system-wiredtiger")
524 ;; TODO
525 ;; build/opt/mongo/db/fts/unicode/string.o failed: Error 1
526 ;; --use-system-boost
527 "--use-system-snappy"
528 "--use-system-zlib"
529 "--use-system-valgrind"
530 ;; "--use-system-stemmer" TODO: Missing relevant package
531 "--use-system-yaml"
532 "--disable-warnings-as-errors"
533 ,(format #f "--jobs=~a" (parallel-job-count))
534 "--ssl")))
535 (modify-phases %standard-phases
536 (add-after 'unpack 'patch
537 (lambda _
538 ;; Remove use of GNU extensions in parse_number_test.cpp, to
539 ;; allow compiling with GCC 7 or later
540 ;; https://jira.mongodb.org/browse/SERVER-28063
541 (substitute* "src/mongo/base/parse_number_test.cpp"
542 (("0xabcab\\.defdefP-10")
543 "687.16784283419838"))
544 #t))
545 (add-after 'unpack 'scons-propagate-environment
546 (lambda _
547 ;; Modify the SConstruct file to arrange for
548 ;; environment variables to be propagated.
549 (substitute* "SConstruct"
550 (("^env = Environment\\(")
551 "env = Environment(ENV=os.environ, "))
552 #t))
553 (add-after 'unpack 'create-version-file
554 (lambda _
555 (call-with-output-file "version.json"
556 (lambda (port)
557 (display ,(simple-format #f "{
558 \"version\": \"~A\"
559 }" version) port)))
560 #t))
561 (replace 'build
562 (lambda _
563 (apply invoke `("scons"
564 ,@common-options
565 "mongod" "mongo" "mongos"))))
566 (replace 'check
567 (lambda* (#:key tests? inputs #:allow-other-keys)
568 (setenv "TZDIR"
569 (string-append (assoc-ref inputs "tzdata")
570 "/share/zoneinfo"))
571 (when tests?
572 ;; Note that with the tests, especially the unittests, the
573 ;; build can take up to ~45GB of space, as many tests are
574 ;; individual executable files, with some being hundreds of
575 ;; megabytes in size.
576 (apply invoke `("scons" ,@common-options "dbtest" "unittests"))
577 (substitute* "build/unittests.txt"
578 ;; TODO: Don't run the async_stream_test, as it hangs
579 (("^build\\/opt\\/mongo\\/executor\\/async\\_stream\\_test\n$")
580 "")
581 ;; TODO: This test fails
582 ;; Expected 0UL != disks.size() (0 != 0) @src/mongo/util/procparser_test.cpp:476
583 (("^build\\/opt\\/mongo\\/util\\/procparser\\_test\n$")
584 ""))
585 (invoke "python" "buildscripts/resmoke.py"
586 "--suites=dbtest,unittests"
587 (format #f "--jobs=~a" (parallel-job-count))))
588 #t))
589 (replace 'install
590 (lambda* (#:key outputs #:allow-other-keys)
591 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
592 (install-file "mongod" bin)
593 (install-file "mongos" bin)
594 (install-file "mongo" bin))
595 #t))))))
596 (home-page "https://www.mongodb.org/")
597 (synopsis "High performance and high availability document database")
598 (description
599 "Mongo is a high-performance, high availability, schema-free
600 document-oriented database. A key goal of MongoDB is to bridge the gap
601 between key/value stores (which are fast and highly scalable) and traditional
602 RDBMS systems (which are deep in functionality).")
603 (license (list license:agpl3
604 ;; Some parts are licensed under the Apache License
605 license:asl2.0))))
606
607 ;; XXX When updating, check whether boost-for-mysql is still needed.
608 ;; It might suffice to patch ‘cmake/boost.cmake’ as done in the past.
609 (define-public mysql
610 (package
611 (name "mysql")
612 (version "5.7.27")
613 (source (origin
614 (method url-fetch)
615 (uri (list (string-append
616 "https://dev.mysql.com/get/Downloads/MySQL-"
617 (version-major+minor version) "/"
618 name "-" version ".tar.gz")
619 (string-append
620 "https://downloads.mysql.com/archives/get/file/"
621 name "-" version ".tar.gz")))
622 (sha256
623 (base32
624 "1fhv16zr46pxm1j8vb8x8mh3nwzglg01arz8gnazbmjqldr5idpq"))))
625 (build-system cmake-build-system)
626 (arguments
627 `(#:configure-flags
628 '("-DBUILD_CONFIG=mysql_release"
629 "-DWITH_SSL=system"
630 "-DWITH_ZLIB=system"
631 "-DDEFAULT_CHARSET=utf8"
632 "-DDEFAULT_COLLATION=utf8_general_ci"
633 "-DMYSQL_DATADIR=/var/lib/mysql"
634 "-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock"
635 "-DINSTALL_INFODIR=share/mysql/docs"
636 "-DINSTALL_MANDIR=share/man"
637 "-DINSTALL_PLUGINDIR=lib/mysql/plugin"
638 "-DINSTALL_SCRIPTDIR=bin"
639 "-DINSTALL_INCLUDEDIR=include/mysql"
640 "-DINSTALL_DOCREADMEDIR=share/mysql/docs"
641 "-DINSTALL_SUPPORTFILESDIR=share/mysql"
642 "-DINSTALL_MYSQLSHAREDIR=share/mysql"
643 "-DINSTALL_DOCDIR=share/mysql/docs"
644 "-DINSTALL_SHAREDIR=share/mysql"
645 ;; Get rid of test data.
646 "-DINSTALL_MYSQLTESTDIR="
647 "-DINSTALL_SQLBENCHDIR=")
648 #:phases (modify-phases %standard-phases
649 (add-after
650 'install 'remove-extra-binaries
651 (lambda* (#:key outputs #:allow-other-keys)
652 (let ((out (assoc-ref outputs "out")))
653 ;; Remove the 3 *_embedded files, which weigh in at
654 ;; 14 MiB each.
655 (for-each delete-file
656 (find-files (string-append out "/bin")
657 "_embedded$"))
658 #t))))))
659 (native-inputs
660 `(("bison" ,bison)
661 ("perl" ,perl)
662 ("pkg-config" ,pkg-config)))
663 (inputs
664 `(("boost" ,boost-for-mysql)
665 ("libaio" ,libaio)
666 ("libtirpc" ,libtirpc)
667 ("ncurses" ,ncurses)
668 ("openssl" ,openssl)
669 ("rpcsvc-proto" ,rpcsvc-proto) ; rpcgen
670 ("zlib" ,zlib)))
671 (home-page "https://www.mysql.com/")
672 (synopsis "Fast, easy to use, and popular database")
673 (description
674 "MySQL is a fast, reliable, and easy to use relational database
675 management system that supports the standardized Structured Query
676 Language.")
677 (license license:gpl2)))
678
679 (define-public mariadb
680 (package
681 (name "mariadb")
682 (version "10.1.44")
683 (source (origin
684 (method url-fetch)
685 (uri (string-append "https://downloads.mariadb.com/MariaDB"
686 "/mariadb-" version "/source/mariadb-"
687 version ".tar.gz"))
688 (sha256
689 (base32
690 "0fah6d50hldq0farxwr8mj3jnniwdz0d1wsha07nx37fc79h7wi1"))
691 (patches (search-patches "mariadb-client-test-32bit.patch"))
692 (modules '((guix build utils)))
693 (snippet
694 '(begin
695 ;; Delete bundled snappy and xz.
696 (delete-file-recursively "storage/tokudb/PerconaFT/third_party")
697 (substitute* "storage/tokudb/PerconaFT/CMakeLists.txt"
698 ;; This file checks that the bundled sources are present and
699 ;; declares build procedures for them.
700 (("^include\\(TokuThirdParty\\)") ""))
701 (substitute* "storage/tokudb/PerconaFT/ft/CMakeLists.txt"
702 ;; Don't attempt to use the procedures we just removed.
703 ((" build_lzma build_snappy") ""))
704
705 ;; Preserve CMakeLists.txt for these.
706 (for-each (lambda (file)
707 (unless (string-suffix? "CMakeLists.txt" file)
708 (delete-file file)))
709 (append (find-files "extra/yassl")
710 (find-files "pcre") (find-files "zlib")))
711 #t))))
712 (build-system cmake-build-system)
713 (outputs '("out" "lib" "dev"))
714 (arguments
715 `(#:configure-flags
716 (list
717 "-DBUILD_CONFIG=mysql_release"
718 ;; Linking with libarchive fails, like this:
719
720 ;; ld: /gnu/store/...-libarchive-3.2.2/lib/libarchive.a(archive_entry.o):
721 ;; relocation R_X86_64_32 against `.bss' can not be used when
722 ;; making a shared object; recompile with -fPIC
723
724 ;; For now, disable the features that that use libarchive (xtrabackup).
725 "-DWITH_LIBARCHIVE=OFF"
726
727 ;; Disable the TokuDB engine, because its test suite frequently fails,
728 ;; and loading it crashes the server: <https://bugs.gnu.org/35521>.
729 "-DTOKUDB_OK=OFF"
730
731 ;; Ensure the system libraries are used.
732 "-DWITH_JEMALLOC=yes"
733 "-DWITH_PCRE=system"
734 "-DWITH_SSL=system"
735 "-DWITH_ZLIB=system"
736
737 "-DDEFAULT_CHARSET=utf8"
738 "-DDEFAULT_COLLATION=utf8_general_ci"
739 "-DMYSQL_DATADIR=/var/lib/mysql"
740 "-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock"
741 (string-append "-DCMAKE_INSTALL_PREFIX=" (assoc-ref %outputs "lib"))
742 (string-append "-DCMAKE_INSTALL_RPATH=" (assoc-ref %outputs "lib")
743 "/lib")
744 (string-append "-DINSTALL_INFODIR=" (assoc-ref %outputs "out")
745 "/share/mysql/docs")
746 (string-append "-DINSTALL_MANDIR=" (assoc-ref %outputs "out")
747 "/share/man")
748 (string-append "-DINSTALL_SCRIPTDIR=" (assoc-ref %outputs "out") "/bin")
749 (string-append "-DINSTALL_BINDIR=" (assoc-ref %outputs "out") "/bin")
750 "-DCMAKE_INSTALL_LIBDIR=lib"
751 "-DINSTALL_PLUGINDIR=lib/mysql/plugin"
752 (string-append "-DINSTALL_INCLUDEDIR=" (assoc-ref %outputs "dev")
753 "/include/mysql")
754 (string-append "-DINSTALL_DOCREADMEDIR=" (assoc-ref %outputs "out")
755 "/share/mysql/docs")
756 (string-append "-DINSTALL_DOCDIR=" (assoc-ref %outputs "out")
757 "/share/mysql/docs")
758 (string-append "-DINSTALL_SUPPORTFILESDIR=" (assoc-ref %outputs "out")
759 "/share/mysql/support-files")
760 "-DINSTALL_MYSQLSHAREDIR=share/mysql"
761 "-DINSTALL_SHAREDIR=share")
762 #:phases
763 (modify-phases %standard-phases
764 (add-after 'unpack 'fix-pcre-detection
765 (lambda _
766 ;; The bundled PCRE in MariaDB has a patch that was upstreamed
767 ;; in version 8.34. Unfortunately the upstream patch behaves
768 ;; slightly differently and the build system fails to detect it.
769 ;; See <https://bugs.exim.org/show_bug.cgi?id=2173>.
770 ;; XXX: Consider patching PCRE instead.
771 (substitute* "cmake/pcre.cmake"
772 ((" OR NOT PCRE_STACK_SIZE_OK") ""))
773 #t))
774 (add-after 'unpack 'adjust-tests
775 (lambda _
776 (let ((disabled-tests
777 '(;; These fail because root@hostname == root@localhost in
778 ;; the build environment, causing a user count mismatch.
779 ;; See <https://jira.mariadb.org/browse/MDEV-7761>.
780 "main.join_cache"
781 "main.explain_non_select"
782 "main.stat_tables"
783 "main.stat_tables_innodb"
784 "roles.acl_statistics"
785
786 ;; This file contains a time bomb which makes it fail after
787 ;; 2030-12-31. See <https://bugs.gnu.org/34351> for details.
788 "main.mysqldump"
789
790 ;; FIXME: This test fails on i686:
791 ;; -myisampack: Can't create/write to file (Errcode: 17 "File exists")
792 ;; +myisampack: Can't create/write to file (Errcode: 17 "File exists)
793 ;; When running "myisampack --join=foo/t3 foo/t1 foo/t2"
794 ;; (all three tables must exist and be identical)
795 ;; in a loop it produces the same error around 1/240 times.
796 ;; montywi on #maria suggested removing the real_end check in
797 ;; "strings/my_vsnprintf.c" on line 503, yet it still does not
798 ;; reach the ending quote occasionally. Disable it for now.
799 "main.myisampack"
800 ;; FIXME: This test fails on armhf-linux:
801 "mroonga/storage.index_read_multiple_double"))
802
803 ;; This file contains a list of known-flaky tests for this
804 ;; release. Append our own items.
805 (unstable-tests (open-file "mysql-test/unstable-tests" "a")))
806 (for-each (lambda (test)
807 (format unstable-tests "~a : ~a\n"
808 test "Disabled in Guix"))
809 disabled-tests)
810 (close-port unstable-tests)
811
812 ;; XXX: This test fails because it expects a latin1 charset and
813 ;; collation. See <https://jira.mariadb.org/browse/MDEV-21264>.
814 (substitute* "mysql-test/r/gis_notembedded.result"
815 (("latin1_swedish_ci") "utf8_general_ci")
816 (("\tlatin1") "\tutf8"))
817
818 (substitute* "mysql-test/suite/binlog/t/binlog_mysqlbinlog_stop_never.test"
819 (("/bin/bash")
820 (which "bash")))
821
822 (substitute* "mysql-test/mysql-test-run.pl"
823 (("/bin/ls") (which "ls"))
824 (("/bin/sh") (which "sh")))
825 #t)))
826 (add-before 'configure 'disable-plugins
827 (lambda _
828 (let ((disable-plugin (lambda (name)
829 (call-with-output-file
830 (string-append "plugin/" name
831 "/CMakeLists.txt")
832 (lambda (port)
833 (format port "\n")))))
834 (disabled-plugins '(;; XXX: Causes a test failure.
835 "disks")))
836 (for-each disable-plugin disabled-plugins)
837 #t)))
838 (replace 'check
839 (lambda* (#:key (tests? #t) #:allow-other-keys)
840 (if tests?
841 (with-directory-excursion "mysql-test"
842 (invoke "./mtr" "--verbose"
843 "--retry=3"
844 "--testcase-timeout=40"
845 "--suite-timeout=600"
846 "--parallel" (number->string (parallel-job-count))
847 "--skip-test-list=unstable-tests"))
848 (format #t "test suite not run~%"))
849 #t))
850 (add-after
851 'install 'post-install
852 (lambda* (#:key inputs outputs #:allow-other-keys)
853 (let* ((out (assoc-ref outputs "out"))
854 (dev (assoc-ref outputs "dev"))
855 (lib (assoc-ref outputs "lib"))
856 (openssl (assoc-ref inputs "openssl")))
857 (substitute* (string-append out "/bin/mysql_install_db")
858 (("basedir=\"\"")
859 (string-append "basedir=\"" out "\"")))
860 ;; Remove unneeded files for testing.
861 (with-directory-excursion lib
862 (for-each delete-file-recursively
863 '("data" "mysql-test" "sql-bench"))
864 ;; And static libraries.
865 (for-each delete-file (find-files "lib" "\\.a$")))
866 (with-directory-excursion out
867 (delete-file "share/man/man1/mysql-test-run.pl.1")
868 ;; Delete huge and unnecessary executables.
869 (for-each delete-file (find-files "bin" "(test|embedded)")))
870 (mkdir-p (string-append dev "/share"))
871 (mkdir-p (string-append dev "/bin"))
872 (rename-file (string-append lib "/bin/mysqld")
873 (string-append out "/bin/mysqld"))
874 (rename-file (string-append lib "/share/pkgconfig")
875 (string-append dev "/share/pkgconfig"))
876 (rename-file (string-append out "/bin/mysql_config")
877 (string-append dev "/bin/mysql_config"))
878
879
880 (substitute* (string-append out "/bin/mysql_install_db")
881 (("\\$basedir/share/mysql")
882 (string-append lib "/share/mysql")))
883
884 ;; Embed an absolute reference to OpenSSL in mysql_config
885 ;; and the pkg-config file to avoid propagation.
886 (substitute* (list (string-append dev "/bin/mysql_config")
887 (string-append dev "/share/pkgconfig/mariadb.pc"))
888 (("-lssl -lcrypto" all)
889 (string-append "-L" openssl "/lib " all)))
890
891 #t))))))
892 (native-inputs
893 `(("bison" ,bison)
894 ;; XXX: On armhf, use GCC 5 to work around <https://bugs.gnu.org/37605>.
895 ,@(if (string-prefix? "armhf" (%current-system))
896 `(("gcc", gcc-5))
897 '())
898 ("perl" ,perl)))
899 (inputs
900 `(("jemalloc" ,jemalloc)
901 ("libaio" ,libaio)
902 ("libxml2" ,libxml2)
903 ("ncurses" ,ncurses)
904 ("openssl" ,openssl-1.0)
905 ("pam" ,linux-pam)
906 ("pcre" ,pcre)
907 ("xz" ,xz)
908 ("zlib" ,zlib)))
909 ;; The test suite is very resource intensive and can take more than three
910 ;; hours on a x86_64 system. Give slow and busy machines some leeway.
911 (properties '((timeout . 64800))) ;18 hours
912 (home-page "https://mariadb.org/")
913 (synopsis "SQL database server")
914 (description
915 "MariaDB is a multi-user and multi-threaded SQL database server, designed
916 as a drop-in replacement of MySQL.")
917 (license license:gpl2)))
918
919 (define-public mariadb-connector-c
920 (package
921 (name "mariadb-connector-c")
922 (version "3.1.6")
923 (source (origin
924 (method url-fetch)
925 (uri (string-append
926 "https://downloads.mariadb.org/f/connector-c-"
927 version "/mariadb-connector-c-"
928 version "-src.tar.gz"))
929 (sha256
930 (base32
931 "083724f5daaqyzdcx508caz6fk2hs89jff85zg28ih43vxkvnrnj"))))
932 (inputs
933 `(("openssl" ,openssl)))
934 (build-system cmake-build-system)
935 (arguments
936 ;; No tests.
937 '(#:tests? #f))
938 (home-page "https://mariadb.com/kb/en/mariadb-connector-c/")
939 (synopsis "Client library to connect to MySQL or MariaDB")
940 (description "The MariaDB Connector/C is used to connect applications
941 developed in C/C++ to MariaDB and MySQL databases.")
942 (license license:lgpl2.1+)))
943
944 ;; Don't forget to update the other postgresql packages when upgrading this one.
945 (define-public postgresql
946 (package
947 (name "postgresql")
948 (version "10.12")
949 (source (origin
950 (method url-fetch)
951 (uri (string-append "https://ftp.postgresql.org/pub/source/v"
952 version "/postgresql-" version ".tar.bz2"))
953 (sha256
954 (base32
955 "1rsab4zf4rx7pvvhlwhb04kb95aiad9cwazc4ksbvg2gij47z3rq"))
956 (patches (search-patches "postgresql-disable-resolve_symlinks.patch"))))
957 (build-system gnu-build-system)
958 (arguments
959 `(#:configure-flags '("--with-uuid=e2fs" "--with-openssl")
960 #:phases
961 (modify-phases %standard-phases
962 (add-before 'configure 'patch-/bin/sh
963 (lambda _
964 ;; Refer to the actual shell.
965 (substitute* '("src/bin/pg_ctl/pg_ctl.c"
966 "src/bin/psql/command.c")
967 (("/bin/sh") (which "sh")))
968 #t))
969 (add-after 'build 'build-contrib
970 (lambda _
971 (invoke "make" "-C" "contrib")))
972 (add-after 'install 'install-contrib
973 (lambda _
974 (invoke "make" "-C" "contrib" "install"))))))
975 (inputs
976 `(("readline" ,readline)
977 ("libuuid" ,util-linux)
978 ("openssl" ,openssl)
979 ("zlib" ,zlib)))
980 (home-page "https://www.postgresql.org/")
981 (synopsis "Powerful object-relational database system")
982 (description
983 "PostgreSQL is a powerful object-relational database system. It is fully
984 ACID compliant, has full support for foreign keys, joins, views, triggers, and
985 stored procedures (in multiple languages). It includes most SQL:2008 data
986 types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and
987 TIMESTAMP. It also supports storage of binary large objects, including
988 pictures, sounds, or video.")
989 (license (license:x11-style "file://COPYRIGHT"))))
990
991 (define-public postgresql-11
992 (package
993 (inherit postgresql)
994 (name "postgresql")
995 (version "11.6")
996 (source (origin
997 (method url-fetch)
998 (uri (string-append "https://ftp.postgresql.org/pub/source/v"
999 version "/postgresql-" version ".tar.bz2"))
1000 (sha256
1001 (base32
1002 "0w1iq488kpzfgfnlw4k32lz5by695mpnkq461jrgsr99z5zlz4j9"))))))
1003
1004 (define-public postgresql-9.6
1005 (package
1006 (inherit postgresql)
1007 (name "postgresql")
1008 (version "9.6.16")
1009 (source (origin
1010 (method url-fetch)
1011 (uri (string-append "https://ftp.postgresql.org/pub/source/v"
1012 version "/postgresql-" version ".tar.bz2"))
1013 (sha256
1014 (base32
1015 "1rr2dgv4ams8r2lp13w85c77rkmzpb88fjlc28mvlw6zq2fblv2w"))))))
1016
1017 (define-public python-pymysql
1018 (package
1019 (name "python-pymysql")
1020 (version "0.9.3")
1021 (source
1022 (origin
1023 (method url-fetch)
1024 (uri (pypi-uri "PyMySQL" version))
1025 (sha256
1026 (base32 "1ry8lxgdc1p3k7gbw20r405jqi5lvhi5wk83kxdbiv8xv3f5kh6q"))))
1027 (build-system python-build-system)
1028 (native-inputs
1029 `(("python-unittest2" ,python-unittest2)))
1030 (inputs
1031 `(("python-cryptography" ,python-cryptography)))
1032 (arguments
1033 `(#:tests? #f)) ; tests expect a running MySQL
1034 (home-page "https://github.com/PyMySQL/PyMySQL/")
1035 (synopsis "Pure-Python MySQL driver")
1036 (description
1037 "PyMySQL is a pure-Python MySQL client library, based on PEP 249.
1038 Most public APIs are compatible with @command{mysqlclient} and MySQLdb.")
1039 (license license:expat)))
1040
1041 (define-public python2-pymysql
1042 (package-with-python2 python-pymysql))
1043
1044 (define-public qdbm
1045 (package
1046 (name "qdbm")
1047 (version "1.8.78")
1048 (source
1049 (origin
1050 (method url-fetch)
1051 (uri (string-append "http://fallabs.com/" name "/"
1052 name "-" version ".tar.gz"))
1053 (sha256
1054 (base32
1055 "0gmpvhn02pkq280ffmn4da1g4mdr1xxz7l80b7y4n7km1mrzwrml"))))
1056 (build-system gnu-build-system)
1057 (arguments
1058 `(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
1059 (assoc-ref %outputs "out")
1060 "/lib"))
1061 #:make-flags (list "CFLAGS=-fPIC")))
1062 (home-page "https://fallabs.com/qdbm/")
1063 (synopsis "Key-value database")
1064 (description "QDBM is a library of routines for managing a
1065 database. The database is a simple data file containing key-value
1066 pairs. Every key and value is serial bytes with variable length.
1067 Binary data as well as character strings can be used as a key or a
1068 value. There is no concept of data tables or data types. Records are
1069 organized in a hash table or B+ tree.")
1070 (license license:lgpl2.1+)))
1071
1072 (define-public recutils
1073 (package
1074 (name "recutils")
1075 (version "1.8")
1076 (source (origin
1077 (method url-fetch)
1078 (uri (string-append "mirror://gnu/recutils/recutils-"
1079 version ".tar.gz"))
1080 (sha256
1081 (base32
1082 "14xiln4immfsw8isnvwvq0h23f6z0wilpgsc4qzabnrzb5lsx3nz"))))
1083 (build-system gnu-build-system)
1084
1085 (arguments '(#:configure-flags
1086 (list (string-append "--with-bash-headers="
1087 (assoc-ref %build-inputs "bash:include")
1088 "/include/bash"))))
1089
1090 (native-inputs `(("bc" ,bc)
1091 ("bash:include" ,bash "include")
1092 ("check" ,check)
1093 ("libuuid" ,util-linux)
1094 ("pkg-config" ,pkg-config)))
1095
1096 ;; TODO: Add more optional inputs.
1097 (inputs `(("curl" ,curl)
1098 ("libgcrypt" ,libgcrypt)))
1099 (synopsis "Manipulate plain text files as databases")
1100 (description
1101 "GNU Recutils is a set of tools and libraries for creating and
1102 manipulating text-based, human-editable databases. Despite being text-based,
1103 databases created with Recutils carry all of the expected features such as
1104 unique fields, primary keys, time stamps and more. Many different field
1105 types are supported, as is encryption.")
1106 (license license:gpl3+)
1107 (home-page "https://www.gnu.org/software/recutils/")))
1108
1109 (define-public emacs-recutils
1110 (package
1111 (inherit recutils)
1112 (name "emacs-recutils")
1113 (build-system emacs-build-system)
1114 (arguments
1115 '(#:phases
1116 (modify-phases %standard-phases
1117 (add-after 'unpack 'change-directory
1118 (lambda _
1119 (chdir "etc")
1120 #t)))))
1121 (native-inputs '())
1122 (inputs '())
1123 (synopsis "Emacs mode for working with recutils database files")
1124 (description "This package provides an Emacs major mode @code{rec-mode}
1125 for working with GNU Recutils text-based, human-editable databases. It
1126 supports editing, navigation, and querying of recutils database files
1127 including field and record folding.")))
1128
1129 (define-public rocksdb
1130 (package
1131 (name "rocksdb")
1132 (version "6.7.3")
1133 (source (origin
1134 (method git-fetch)
1135 (uri (git-reference
1136 (url "https://github.com/facebook/rocksdb")
1137 (commit (string-append "v" version))))
1138 (file-name (git-file-name name version))
1139 (sha256
1140 (base32
1141 "19nacd7fb98i97ir07jjsk3l1vf7zzq04c4nqywizq8wakcx99s9"))
1142 (modules '((guix build utils)))
1143 (snippet
1144 '(begin
1145 ;; TODO: unbundle gtest.
1146 (delete-file "build_tools/gnu_parallel")
1147 (substitute* "Makefile"
1148 (("build_tools/gnu_parallel") "parallel"))
1149 #t))))
1150 (build-system gnu-build-system)
1151 (arguments
1152 `(#:make-flags (list "CC=gcc" "V=1"
1153 ;; Ceph requires that RTTI is enabled.
1154 "USE_RTTI=1"
1155 (string-append "INSTALL_PATH="
1156 (assoc-ref %outputs "out"))
1157
1158 ;; Running the full test suite takes hours and require
1159 ;; a lot of disk space. Instead we only run a subset
1160 ;; (see .travis.yml and Makefile).
1161 "ROCKSDBTESTS_END=db_tailing_iter_test")
1162 #:test-target "check_some"
1163 ;; Many tests fail on 32-bit platforms. There are multiple reports about
1164 ;; this upstream, but it's not going to be supported any time soon.
1165 #:tests? (let ((system ,(or (%current-target-system)
1166 (%current-system))))
1167 (or (string-prefix? "x86_64-linux" system)
1168 (string-prefix? "aarch64-linux" system)))
1169 #:phases
1170 (modify-phases %standard-phases
1171 (add-after 'unpack 'patch-Makefile
1172 (lambda _
1173 (substitute* "Makefile"
1174 ;; Don't depend on the static library when installing.
1175 (("install: install-static")
1176 "install: install-shared")
1177 (("#!/bin/sh") (string-append "#!" (which "sh"))))
1178 #t))
1179 (delete 'configure)
1180 ;; The default target is only needed for tests and built on demand.
1181 (delete 'build)
1182 (add-before 'check 'disable-optimizations
1183 (lambda _
1184 ;; Prevent the build from passing '-march=native' to the compiler.
1185 (setenv "PORTABLE" "1")
1186 #t))
1187 (add-before 'check 'disable-failing-tests
1188 (lambda _
1189 (substitute* "Makefile"
1190 ;; These tests reliably fail due to "Too many open files".
1191 (("^[[:blank:]]+env_test[[:blank:]]+\\\\") "\\")
1192 (("^[[:blank:]]+persistent_cache_test[[:blank:]]+\\\\") "\\"))
1193 #t))
1194 (add-after 'check 'build
1195 ;; The default build target is a debug build for tests. The
1196 ;; install target depends on the "shared_lib" release target
1197 ;; so we build it here for clarity.
1198 (lambda* (#:key (make-flags '()) parallel-build? #:allow-other-keys)
1199 (apply invoke "make" "shared_lib"
1200 `(,@(if parallel-build?
1201 `("-j" ,(number->string (parallel-job-count)))
1202 '())
1203 ,@make-flags)))))))
1204 (native-inputs
1205 `(("parallel" ,parallel)
1206 ("perl" ,perl)
1207 ("procps" ,procps)
1208 ("python" ,python-2)
1209 ("which" ,which)))
1210 (inputs
1211 `(("bzip2" ,bzip2)
1212 ("gflags" ,gflags)
1213 ("jemalloc" ,jemalloc)
1214 ("lz4" ,lz4)
1215 ("snappy" ,snappy)
1216 ("zlib" ,zlib)))
1217 (home-page "https://rocksdb.org/")
1218 (synopsis "Persistent key-value store for fast storage")
1219 (description
1220 "RocksDB is a library that forms the core building block for a fast
1221 key-value server, especially suited for storing data on flash drives. It
1222 has a @dfn{Log-Structured-Merge-Database} (LSM) design with flexible tradeoffs
1223 between @dfn{Write-Amplification-Factor} (WAF), @dfn{Read-Amplification-Factor}
1224 (RAF) and @dfn{Space-Amplification-Factor} (SAF). It has multi-threaded
1225 compactions, making it specially suitable for storing multiple terabytes of
1226 data in a single database. RocksDB is partially based on @code{LevelDB}.")
1227 ;; RocksDB is dual licensed under GPL2 and ASL 2.0. Some header
1228 ;; files carry the 3-clause BSD license.
1229 (license (list license:gpl2 license:asl2.0 license:bsd-3))))
1230
1231 (define-public sparql-query
1232 (package
1233 (name "sparql-query")
1234 (version "1.1")
1235 (source (origin
1236 (method git-fetch)
1237 (uri (git-reference
1238 (url "https://github.com/tialaramex/sparql-query")
1239 (commit version)))
1240 (sha256
1241 (base32 "0a84a89idpjhj9w2y3fmvzv7ldps1cva1kxvfmh897k02kaniwxk"))
1242 (file-name (git-file-name name version))))
1243 (build-system gnu-build-system)
1244 (inputs
1245 `(("curl" ,curl)
1246 ("glib" ,glib)
1247 ("libxml2" ,libxml2)
1248 ("ncurses" ,ncurses)
1249 ("readline" ,readline)))
1250 (native-inputs
1251 `(("pkg-config" ,pkg-config)))
1252 (arguments
1253 `(#:make-flags '("CC=gcc")
1254 #:phases
1255 (modify-phases %standard-phases
1256 (delete 'configure)
1257 ;; The Makefile uses git to obtain versioning information. This phase
1258 ;; substitutes the git invocation with the package version.
1259 (add-after 'unpack 'remove-git-dependency
1260 (lambda _
1261 (substitute* "Makefile"
1262 (("^gitrev :=.*$")
1263 (string-append "gitrev = \"v" ,version "\"")))
1264 #t))
1265 ;; The install phase of the Makefile assumes $PREFIX/usr/local/bin.
1266 ;; This replacement does the same thing, except for using $PREFIX/bin
1267 ;; instead.
1268 (replace 'install
1269 (lambda* (#:key outputs #:allow-other-keys)
1270 (let* ((out (assoc-ref outputs "out"))
1271 (bin (string-append out "/bin")))
1272 (install-file "sparql-query" bin)
1273 (symlink (string-append bin "/sparql-query")
1274 (string-append bin "/sparql-update")))
1275 #t))
1276 (replace 'check
1277 (lambda* (#:key make-flags #:allow-other-keys)
1278 (apply invoke "make" `(,@make-flags "scan-test"))
1279 (invoke "./scan-test"))))))
1280 (home-page "https://github.com/tialaramex/sparql-query/")
1281 (synopsis "Command-line tool for accessing SPARQL endpoints over HTTP")
1282 (description "Sparql-query is a command-line tool for accessing SPARQL
1283 endpoints over HTTP. It has been intentionally designed to @code{feel} similar to
1284 tools for interrogating SQL databases. For example, you can enter a query over
1285 several lines, using a semi-colon at the end of a line to indicate the end of
1286 your query. It also supports readline so that you can more easily recall and
1287 edit previous queries, even across sessions. It can be used non-interactively,
1288 for example from a shell script.")
1289 ;; Some files (like scan-sparql.c) contain a GPLv3+ license header, while
1290 ;; others (like sparql-query.c) contain a GPLv2+ license header.
1291 (license (list license:gpl3+))))
1292
1293 (define-public sqitch
1294 (package
1295 (name "sqitch")
1296 (version "1.0.0")
1297 (source
1298 (origin
1299 (method url-fetch)
1300 (uri (string-append
1301 "mirror://cpan/authors/id/D/DW/DWHEELER/App-Sqitch-v"
1302 version ".tar.gz"))
1303 (sha256
1304 (base32 "0p4wraqiscvwmmsvfqfy65blgsilwpvd9zj4d2zvm2xdx70ncr7l"))))
1305 (build-system perl-build-system)
1306 (arguments
1307 '(#:phases
1308 (modify-phases %standard-phases
1309 (add-before 'check 'set-check-environment
1310 (lambda _
1311 (setenv "TZ" "UTC")
1312 (setenv "HOME" "/tmp")
1313 #t))
1314 (add-after 'install 'wrap-program
1315 (lambda* (#:key outputs #:allow-other-keys)
1316 (let* ((out (assoc-ref outputs "out"))
1317 (path (getenv "PERL5LIB")))
1318 (wrap-program (string-append out "/bin/sqitch")
1319 `("PERL5LIB" ":" prefix
1320 (,(string-append out "/lib/perl5/site_perl"
1321 ":"
1322 path)))))
1323 #t)))))
1324 (native-inputs
1325 `(("perl-capture-tiny" ,perl-capture-tiny)
1326 ("perl-io-pager" ,perl-io-pager)
1327 ("perl-module-build" ,perl-module-build)
1328 ("perl-module-runtime" ,perl-module-runtime)
1329 ("perl-path-class" ,perl-path-class)
1330 ("perl-test-deep" ,perl-test-deep)
1331 ("perl-test-dir" ,perl-test-dir)
1332 ("perl-test-exception" ,perl-test-exception)
1333 ("perl-test-file" ,perl-test-file)
1334 ("perl-test-file-contents" ,perl-test-file-contents)
1335 ("perl-test-mockmodule" ,perl-test-mockmodule)
1336 ("perl-test-nowarnings" ,perl-test-nowarnings)
1337 ("perl-test-warn" ,perl-test-warn)))
1338 (inputs
1339 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
1340 ("perl-clone" ,perl-clone)
1341 ("perl-config-gitlike" ,perl-config-gitlike)
1342 ("perl-datetime" ,perl-datetime)
1343 ("perl-datetime-timezone" ,perl-datetime-timezone)
1344 ("perl-dbd-pg" ,perl-dbd-pg)
1345 ("perl-dbi" ,perl-dbi)
1346 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
1347 ("perl-encode-locale" ,perl-encode-locale)
1348 ("perl-hash-merge" ,perl-hash-merge)
1349 ("perl-ipc-run3" ,perl-ipc-run3)
1350 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
1351 ("perl-libintl-perl" ,perl-libintl-perl)
1352 ("perl-list-moreutils" ,perl-list-moreutils)
1353 ("perl-moo" ,perl-moo)
1354 ("perl-mysql-config" ,perl-mysql-config)
1355 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
1356 ("perl-path-class" ,perl-path-class)
1357 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1358 ("perl-string-formatter" ,perl-string-formatter)
1359 ("perl-string-shellquote" ,perl-string-shellquote)
1360 ("perl-sub-exporter" ,perl-sub-exporter)
1361 ("perl-template-tiny" ,perl-template-tiny)
1362 ("perl-template-toolkit" ,perl-template-toolkit)
1363 ("perl-throwable" ,perl-throwable)
1364 ("perl-try-tiny" ,perl-try-tiny)
1365 ("perl-type-tiny" ,perl-type-tiny)
1366 ("perl-type-tiny-xs" ,perl-type-tiny-xs)
1367 ("perl-uri" ,perl-uri)
1368 ("perl-uri-db" ,perl-uri-db)))
1369 (home-page "https://sqitch.org/")
1370 (synopsis "Database change management tool")
1371 (description
1372 "Sqitch is a standalone change management system for database schemas,
1373 which uses SQL to describe changes.")
1374 (license license:x11)))
1375
1376 (define-public sqlcrush
1377 ;; Unfortunately, there is no proper upstream release and may never be.
1378 (let ((commit "b5f6868f189566a26eecc78d0f0659813c1aa98a")
1379 (revision "1"))
1380 (package
1381 (name "sqlcrush")
1382 (version (git-version "0.1.5" revision commit))
1383 (source (origin
1384 (method git-fetch)
1385 (uri (git-reference
1386 (url "https://github.com/coffeeandscripts/sqlcrush.git")
1387 (commit commit)))
1388 (file-name (git-file-name name version))
1389 (sha256
1390 (base32
1391 "0x3wy40r93p0jv3nbwj9a77wa4ff697d13r0wffmm7q9h3mzsww8"))))
1392 (build-system python-build-system)
1393 (inputs
1394 `(("python-cryptography" ,python-cryptography)
1395 ("python-psycopg2" ,python-psycopg2)
1396 ("python-pymysql" ,python-pymysql)
1397 ("python-sqlalchemy" ,python-sqlalchemy)))
1398 (home-page "https://github.com/coffeeandscripts/sqlcrush")
1399 (synopsis "Text console-based database viewer and editor")
1400 (description
1401 "SQLcrush lets you view and edit a database directly from the text
1402 console through an ncurses interface. You can explore each table's structure,
1403 browse and edit the contents, add and delete entries, all while tracking your
1404 changes.")
1405 (license license:gpl3+)))) ; no headers, see README.md
1406
1407 (define-public tdb
1408 (package
1409 (name "tdb")
1410 (version "1.4.3")
1411 (source (origin
1412 (method url-fetch)
1413 (uri (string-append "https://www.samba.org/ftp/tdb/tdb-"
1414 version ".tar.gz"))
1415 (sha256
1416 (base32
1417 "06waz0k50c7v3chd08mzp2rv7w4k4q9isbxx3vhlfpx1vy9q61f8"))))
1418 (build-system gnu-build-system)
1419 (arguments
1420 '(#:phases
1421 (modify-phases %standard-phases
1422 (replace 'configure
1423 (lambda* (#:key outputs #:allow-other-keys)
1424 (let ((out (assoc-ref outputs "out")))
1425 ;; The 'configure' script is a wrapper for Waf and
1426 ;; doesn't recognize things like '--enable-fast-install'.
1427 (invoke "./configure"
1428 (string-append "--prefix=" out))))))))
1429 (native-inputs
1430 `(;; TODO: Build the documentation.
1431 ;; ("docbook-xsl" ,docbook-xsl)
1432 ;; ("libxml2" ,libxml2)
1433 ;; ("libxslt" ,libxslt)
1434 ("python" ,python) ;for the Waf build system
1435 ("which" ,which)))
1436 (home-page "https://tdb.samba.org/")
1437 (synopsis "Trivial database")
1438 (description
1439 "TDB is a Trivial Database. In concept, it is very much like GDBM,
1440 and BSD's DB except that it allows multiple simultaneous writers and uses
1441 locking internally to keep writers from trampling on each other. TDB is also
1442 extremely small.")
1443 (license license:lgpl3+)))
1444
1445 (define-public perl-dbi
1446 (package
1447 (name "perl-dbi")
1448 (version "1.642")
1449 (source (origin
1450 (method url-fetch)
1451 (uri (string-append
1452 "mirror://cpan/authors/id/T/TI/TIMB/DBI-"
1453 version ".tar.gz"))
1454 (sha256
1455 (base32
1456 "0pbzqazrx7pnw4nbyaf27in4b6yddkirbd2ws7mnqa2n7812a81z"))))
1457 (build-system perl-build-system)
1458 (synopsis "Database independent interface for Perl")
1459 (description "This package provides an database interface for Perl.")
1460 (home-page "https://metacpan.org/release/DBI")
1461 (license license:perl-license)))
1462
1463 (define-public perl-dbix-class
1464 (package
1465 (name "perl-dbix-class")
1466 (version "0.082841")
1467 (source
1468 (origin
1469 (method url-fetch)
1470 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
1471 "DBIx-Class-" version ".tar.gz"))
1472 (sha256
1473 (base32
1474 "1gf3hgv8f9rnr8bl4ljgsqk4aliphmvljhsk4282kvdc4mcgh1fp"))))
1475 (build-system perl-build-system)
1476 (native-inputs
1477 `(("perl-dbd-sqlite" ,perl-dbd-sqlite)
1478 ("perl-file-temp" ,perl-file-temp)
1479 ("perl-module-install" ,perl-module-install)
1480 ("perl-package-stash" ,perl-package-stash)
1481 ("perl-test-deep" ,perl-test-deep)
1482 ("perl-test-exception" ,perl-test-exception)
1483 ("perl-test-warn" ,perl-test-warn)))
1484 (propagated-inputs
1485 `(("perl-class-accessor-grouped" ,perl-class-accessor-grouped)
1486 ("perl-class-c3-componentised" ,perl-class-c3-componentised)
1487 ("perl-class-inspector" ,perl-class-inspector)
1488 ("perl-config-any" ,perl-config-any)
1489 ("perl-context-preserve" ,perl-context-preserve)
1490 ("perl-data-dumper-concise" ,perl-data-dumper-concise)
1491 ("perl-data-page" ,perl-data-page)
1492 ("perl-dbi" ,perl-dbi)
1493 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
1494 ("perl-hash-merge" ,perl-hash-merge)
1495 ("perl-module-find" ,perl-module-find)
1496 ("perl-moo" ,perl-moo)
1497 ("perl-mro-compat" ,perl-mro-compat)
1498 ("perl-namespace-clean" ,perl-namespace-clean)
1499 ("perl-path-class" ,perl-path-class)
1500 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
1501 ("perl-scope-guard" ,perl-scope-guard)
1502 ("perl-sql-abstract" ,perl-sql-abstract)
1503 ("perl-sub-name" ,perl-sub-name)
1504 ("perl-text-balanced" ,perl-text-balanced)
1505 ("perl-try-tiny" ,perl-try-tiny)))
1506 (home-page "https://metacpan.org/release/DBIx-Class")
1507 (synopsis "Extensible and flexible object <-> relational mapper")
1508 (description "An SQL to OO mapper with an object API inspired by
1509 Class::DBI (with a compatibility layer as a springboard for porting) and a
1510 resultset API that allows abstract encapsulation of database operations. It
1511 aims to make representing queries in your code as perl-ish as possible while
1512 still providing access to as many of the capabilities of the database as
1513 possible, including retrieving related records from multiple tables in a
1514 single query, \"JOIN\", \"LEFT JOIN\", \"COUNT\", \"DISTINCT\", \"GROUP BY\",
1515 \"ORDER BY\" and \"HAVING\" support.")
1516 (license license:perl-license)))
1517
1518 (define-public perl-dbix-class-cursor-cached
1519 (package
1520 (name "perl-dbix-class-cursor-cached")
1521 (version "1.001004")
1522 (source
1523 (origin
1524 (method url-fetch)
1525 (uri (string-append "mirror://cpan/authors/id/A/AR/ARCANEZ/"
1526 "DBIx-Class-Cursor-Cached-" version ".tar.gz"))
1527 (sha256
1528 (base32
1529 "09b2jahn2x12qm4f7qm1jzsxbz7qn1czp6a3fnl5l2i3l4r5421p"))))
1530 (build-system perl-build-system)
1531 (native-inputs
1532 `(("perl-cache-cache" ,perl-cache-cache)
1533 ("perl-dbd-sqlite" ,perl-dbd-sqlite)
1534 ("perl-module-install" ,perl-module-install)))
1535 (propagated-inputs
1536 `(("perl-carp-clan" ,perl-carp-clan)
1537 ("perl-dbix-class" ,perl-dbix-class)))
1538 (home-page "https://metacpan.org/release/DBIx-Class-Cursor-Cached")
1539 (synopsis "Cursor with built-in caching support")
1540 (description "DBIx::Class::Cursor::Cached provides a cursor class with
1541 built-in caching support.")
1542 (license license:perl-license)))
1543
1544 (define-public perl-dbix-class-introspectablem2m
1545 (package
1546 (name "perl-dbix-class-introspectablem2m")
1547 (version "0.001002")
1548 (source
1549 (origin
1550 (method url-fetch)
1551 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1552 "DBIx-Class-IntrospectableM2M-" version ".tar.gz"))
1553 (sha256
1554 (base32
1555 "1w47rh2241iy5x3a9bqsyd5kdp9sk43dksr99frzv4qn4jsazfn6"))))
1556 (build-system perl-build-system)
1557 (native-inputs
1558 `(("perl-module-install" ,perl-module-install)))
1559 (propagated-inputs
1560 `(("perl-dbix-class" ,perl-dbix-class)))
1561 (home-page "https://metacpan.org/release/DBIx-Class-IntrospectableM2M")
1562 (synopsis "Introspect many-to-many relationships")
1563 (description "Because the many-to-many relationships are not real
1564 relationships, they can not be introspected with DBIx::Class. Many-to-many
1565 relationships are actually just a collection of convenience methods installed
1566 to bridge two relationships. This DBIx::Class component can be used to store
1567 all relevant information about these non-relationships so they can later be
1568 introspected and examined.")
1569 (license license:perl-license)))
1570
1571 (define-public perl-dbix-class-schema-loader
1572 (package
1573 (name "perl-dbix-class-schema-loader")
1574 (version "0.07049")
1575 (source
1576 (origin
1577 (method url-fetch)
1578 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1579 "DBIx-Class-Schema-Loader-" version ".tar.gz"))
1580 (sha256
1581 (base32
1582 "0r57fv71ypxafb85cpxph1hdqii7ipjwvc19yb6fpkvq2ggcssg8"))))
1583 (build-system perl-build-system)
1584 (native-inputs
1585 `(("perl-config-any" ,perl-config-any)
1586 ("perl-config-general" ,perl-config-general)
1587 ("perl-dbd-sqlite" ,perl-dbd-sqlite)
1588 ("perl-dbix-class-introspectablem2m" ,perl-dbix-class-introspectablem2m)
1589 ("perl-module-install" ,perl-module-install)
1590 ("perl-moose" ,perl-moose)
1591 ("perl-moosex-markasmethods" ,perl-moosex-markasmethods)
1592 ("perl-moosex-nonmoose" ,perl-moosex-nonmoose)
1593 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
1594 ("perl-test-deep" ,perl-test-deep)
1595 ("perl-test-differences" ,perl-test-differences)
1596 ("perl-test-exception" ,perl-test-exception)
1597 ("perl-test-pod" ,perl-test-pod)
1598 ("perl-test-warn" ,perl-test-warn)))
1599 (propagated-inputs
1600 `(("perl-class-unload" ,perl-class-unload)
1601 ("perl-class-inspector" ,perl-class-inspector)
1602 ("perl-class-accessor-grouped" ,perl-class-accessor-grouped)
1603 ("perl-class-c3-componentised" ,perl-class-c3-componentised)
1604 ("perl-carp-clan" ,perl-carp-clan)
1605 ("perl-data-dump" ,perl-data-dump)
1606 ("perl-dbix-class" ,perl-dbix-class)
1607 ("perl-hash-merge" ,perl-hash-merge)
1608 ("perl-list-moreutils" ,perl-list-moreutils)
1609 ("perl-lingua-en-inflect-phrase" ,perl-lingua-en-inflect-phrase)
1610 ("perl-lingua-en-inflect-number" ,perl-lingua-en-inflect-number)
1611 ("perl-lingua-en-tagger" ,perl-lingua-en-tagger)
1612 ("perl-namespace-clean" ,perl-namespace-clean)
1613 ("perl-mro-compat" ,perl-mro-compat)
1614 ("perl-scope-guard" ,perl-scope-guard)
1615 ("perl-string-camelcase" ,perl-string-camelcase)
1616 ("perl-string-toidentifier-en" ,perl-string-toidentifier-en)
1617 ("perl-sub-name" ,perl-sub-name)
1618 ("perl-try-tiny" ,perl-try-tiny)))
1619 (arguments `(#:tests? #f)) ;TODO: t/20invocations.t fails
1620 (home-page "https://metacpan.org/release/DBIx-Class-Schema-Loader")
1621 (synopsis "Create a DBIx::Class::Schema based on a database")
1622 (description "DBIx::Class::Schema::Loader automates the definition of a
1623 DBIx::Class::Schema by scanning database table definitions and setting up the
1624 columns, primary keys, unique constraints and relationships.")
1625 (license license:perl-license)))
1626
1627 (define-public perl-dbd-pg
1628 (package
1629 (name "perl-dbd-pg")
1630 (version "3.7.4")
1631 (source
1632 (origin
1633 (method url-fetch)
1634 (uri (string-append "mirror://cpan/authors/id/T/TU/TURNSTEP/"
1635 "DBD-Pg-" version ".tar.gz"))
1636 (sha256
1637 (base32
1638 "0gkqlvbmzbdm0g4k328nlkjdg3wrjm5i2n9jxj1i8sqxkm79rylz"))))
1639 (build-system perl-build-system)
1640 (native-inputs
1641 `(("perl-dbi" ,perl-dbi)))
1642 (propagated-inputs
1643 `(("perl-dbi" ,perl-dbi)
1644 ("postgresql" ,postgresql)))
1645 (home-page "https://metacpan.org/release/DBD-Pg")
1646 (synopsis "DBI PostgreSQL interface")
1647 (description "This package provides a PostgreSQL driver for the Perl5
1648 @dfn{Database Interface} (DBI).")
1649 (license license:perl-license)))
1650
1651 (define-public perl-dbd-mysql
1652 (package
1653 (name "perl-dbd-mysql")
1654 (version "4.050")
1655 (source
1656 (origin
1657 (method url-fetch)
1658 (uri (string-append "mirror://cpan/authors/id/D/DV/DVEEDEN/"
1659 "DBD-mysql-" version ".tar.gz"))
1660 (sha256
1661 (base32 "0y4djb048i09dk19av7mzfb3khr72vw11p3ayw2p82jsy4gm8j2g"))))
1662 (build-system perl-build-system)
1663 (arguments
1664 `(#:phases
1665 (modify-phases %standard-phases
1666 (add-before 'configure 'skip-library-detection
1667 ;; Avoid depencies on perl-devel-checklib, openssl, and zlib. They
1668 ;; are really only needed for the test suite; their absence does not
1669 ;; affect the build or the end result.
1670 (lambda _
1671 (substitute* "Makefile.PL"
1672 (("use Devel::CheckLib;" match)
1673 (string-append "# " match))
1674 (("assert_lib")
1675 "print"))
1676 #t)))
1677 ;; Tests require running MySQL server.
1678 #:tests? #f))
1679 (propagated-inputs
1680 `(("perl-dbi" ,perl-dbi)
1681 ("mysql" ,mariadb "lib")
1682 ("mysql-dev" ,mariadb "dev")))
1683 (home-page "https://metacpan.org/release/DBD-mysql")
1684 (synopsis "DBI MySQL interface")
1685 (description "This package provides a MySQL driver for the Perl5
1686 @dfn{Database Interface} (DBI).")
1687 (license license:perl-license)))
1688
1689 (define-public perl-dbd-sqlite
1690 (package
1691 (name "perl-dbd-sqlite")
1692 (version "1.62")
1693 (source (origin
1694 (method url-fetch)
1695 (uri (string-append
1696 "mirror://cpan/authors/id/I/IS/ISHIGAKI/DBD-SQLite-"
1697 version ".tar.gz"))
1698 (sha256
1699 (base32
1700 "0p78ri1q6xpc1i98i6mlriv8n66iz8r5r11dlsknjm4y58rfz0mx"))))
1701 (build-system perl-build-system)
1702 (inputs `(("sqlite" ,sqlite)))
1703 (propagated-inputs `(("perl-dbi" ,perl-dbi)))
1704 (synopsis "SQlite interface for Perl")
1705 (description "DBD::SQLite is a Perl DBI driver for SQLite, that includes
1706 the entire thing in the distribution. So in order to get a fast transaction
1707 capable RDBMS working for your Perl project you simply have to install this
1708 module, and nothing else.")
1709 (license license:perl-license)
1710 (home-page "https://metacpan.org/release/DBD-SQLite")))
1711
1712 (define-public perl-mysql-config
1713 (package
1714 (name "perl-mysql-config")
1715 (version "1.04")
1716 (source
1717 (origin
1718 (method url-fetch)
1719 (uri (string-append
1720 "mirror://cpan/authors/id/D/DA/DARREN/MySQL-Config-"
1721 version
1722 ".tar.gz"))
1723 (sha256
1724 (base32
1725 "1svn7ccw2gc4cazvc58j84rxhnc9vs01zpird0l8460598j475qr"))))
1726 (build-system perl-build-system)
1727 (home-page "https://metacpan.org/release/MySQL-Config")
1728 (synopsis "Parse and utilize MySQL's /etc/my.cnf and ~/.my.cnf files")
1729 (description
1730 "@code{MySQL::Config} emulates the @code{load_defaults} function from
1731 libmysqlclient. It will fill an aray with long options, ready to be parsed by
1732 @code{Getopt::Long}.")
1733 (license license:perl-license)))
1734
1735 (define-public perl-sql-abstract
1736 (package
1737 (name "perl-sql-abstract")
1738 (version "1.86")
1739 (source
1740 (origin
1741 (method url-fetch)
1742 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1743 "SQL-Abstract-" version ".tar.gz"))
1744 (sha256
1745 (base32 "1pwcm8hwxcgidyyrak37lx69d85q728jxsb0b14jz93gbvdgg9z7"))))
1746 (build-system perl-build-system)
1747 (native-inputs
1748 `(("perl-module-install" ,perl-module-install)
1749 ("perl-test-deep" ,perl-test-deep)
1750 ("perl-test-exception" ,perl-test-exception)
1751 ("perl-test-warn" ,perl-test-warn)))
1752 (propagated-inputs
1753 `(("perl-hash-merge" ,perl-hash-merge)
1754 ("perl-moo" ,perl-moo)
1755 ("perl-mro-compat" ,perl-mro-compat)
1756 ("perl-text-balanced" ,perl-text-balanced)))
1757 (home-page "https://metacpan.org/release/SQL-Abstract")
1758 (synopsis "Generate SQL from Perl data structures")
1759 (description "This module was inspired by the excellent DBIx::Abstract.
1760 While based on the concepts used by DBIx::Abstract, the concepts used have
1761 been modified to make the SQL easier to generate from Perl data structures.
1762 The underlying idea is for this module to do what you mean, based on the data
1763 structures you provide it, so that you don't have to modify your code every
1764 time your data changes.")
1765 (license license:perl-license)))
1766
1767 (define-public perl-sql-splitstatement
1768 (package
1769 (name "perl-sql-splitstatement")
1770 (version "1.00020")
1771 (source
1772 (origin
1773 (method url-fetch)
1774 (uri (string-append "mirror://cpan/authors/id/E/EM/EMAZEP/"
1775 "SQL-SplitStatement-" version ".tar.gz"))
1776 (sha256
1777 (base32
1778 "0bqg45k4c9qkb2ypynlwhpvzsl4ssfagmsalys18s5c79ps30z7p"))))
1779 (build-system perl-build-system)
1780 (native-inputs
1781 `(("perl-test-exception" ,perl-test-exception)))
1782 (propagated-inputs
1783 `(("perl-class-accessor" ,perl-class-accessor)
1784 ("perl-list-moreutils" ,perl-list-moreutils)
1785 ("perl-regexp-common" ,perl-regexp-common)
1786 ("perl-sql-tokenizer" ,perl-sql-tokenizer)))
1787 (home-page "https://metacpan.org/release/SQL-SplitStatement")
1788 (synopsis "Split SQL code into atomic statements")
1789 (description "This module tries to split any SQL code, even including
1790 non-standard extensions, into the atomic statements it is composed of.")
1791 (license license:perl-license)))
1792
1793 (define-public perl-sql-tokenizer
1794 (package
1795 (name "perl-sql-tokenizer")
1796 (version "0.24")
1797 (source
1798 (origin
1799 (method url-fetch)
1800 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
1801 "SQL-Tokenizer-" version ".tar.gz"))
1802 (sha256
1803 (base32
1804 "1qa2dfbzdlr5qqdam9yn78z5w3al5r8577x06qan8wv58ay6ka7s"))))
1805 (build-system perl-build-system)
1806 (home-page "https://metacpan.org/release/SQL-Tokenizer")
1807 (synopsis "SQL tokenizer")
1808 (description "SQL::Tokenizer is a tokenizer for SQL queries. It does not
1809 claim to be a parser or query verifier. It just creates sane tokens from a
1810 valid SQL query.")
1811 (license license:perl-license)))
1812
1813 (define-public unixodbc
1814 (package
1815 (name "unixodbc")
1816 (version "2.3.7")
1817 (source (origin
1818 (method url-fetch)
1819 (uri
1820 (string-append
1821 "ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-"
1822 version ".tar.gz"))
1823 (sha256
1824 (base32 "0xry3sg497wly8f7715a7gwkn2k36bcap0mvzjw74jj53yx6kwa5"))))
1825 (build-system gnu-build-system)
1826 (synopsis "Data source abstraction library")
1827 (description "Unixodbc is a library providing an API with which to access
1828 data sources. Data sources include SQL Servers and any software with an ODBC
1829 Driver.")
1830 (license license:lgpl2.1+)
1831 ;; COPYING contains copy of lgpl2.1 - but copyright notices just say "LGPL"
1832 (home-page "http://www.unixodbc.org")))
1833
1834 (define-public unqlite
1835 (package
1836 (name "unqlite")
1837 (version "1.1.6")
1838 (source (origin
1839 (method url-fetch)
1840 ;; Contains bug fixes against the official release, and has an
1841 ;; autotooled build system.
1842 (uri (string-append "https://github.com/aidin36/tocc/releases/"
1843 "download/v1.0.0/"
1844 "unqlite-unofficial-" version ".tar.gz"))
1845 (sha256
1846 (base32
1847 "1sbpvhg15gadq0mpcy16q7k3rkg4b4dicpnn5xifpkpn02sqik3s"))))
1848 (build-system gnu-build-system)
1849 (arguments `(#:tests? #f)) ;No check target
1850 (home-page "https://www.unqlite.org")
1851 (synopsis "In-memory key/value and document store")
1852 (description
1853 "UnQLite is an in-process software library which implements a
1854 self-contained, serverless, zero-configuration, transactional NoSQL
1855 database engine. UnQLite is a document store database similar to
1856 MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store
1857 similar to BerkeleyDB, LevelDB, etc.")
1858 (license license:bsd-2)))
1859
1860 (define-public redis
1861 (package
1862 (name "redis")
1863 (version "5.0.7")
1864 (source (origin
1865 (method url-fetch)
1866 (uri (string-append "http://download.redis.io/releases/redis-"
1867 version".tar.gz"))
1868 (sha256
1869 (base32
1870 "0ax8sf3vw0yadr41kzc04917scrg5wir1d94zmbz00b8pzm79nv1"))))
1871 (build-system gnu-build-system)
1872 (arguments
1873 '(#:tests? #f ; tests related to master/slave and replication fail
1874 #:phases (modify-phases %standard-phases
1875 (delete 'configure))
1876 #:make-flags `("CC=gcc"
1877 "MALLOC=libc"
1878 "LDFLAGS=-ldl"
1879 ,(string-append "PREFIX="
1880 (assoc-ref %outputs "out")))))
1881 (synopsis "Key-value cache and store")
1882 (description "Redis is an advanced key-value cache and store. Redis
1883 supports many data structures including strings, hashes, lists, sets, sorted
1884 sets, bitmaps and hyperloglogs.")
1885 (home-page "https://redis.io/")
1886 (license license:bsd-3)))
1887
1888 (define-public kyotocabinet
1889 (package
1890 (name "kyotocabinet")
1891 (version "1.2.77")
1892 (source (origin
1893 (method url-fetch)
1894 (uri (string-append "http://fallabs.com/kyotocabinet/pkg/"
1895 name "-" version ".tar.gz"))
1896 (sha256
1897 (base32
1898 "1rlx4307adbzd842b4npq6cwlw8h010ingxaz3qz1ijc70lr72an"))))
1899 (build-system gnu-build-system)
1900 (arguments
1901 `(#:configure-flags
1902 (list
1903 "--disable-opt" ;"-march=native". XXX this also turns off -O0.
1904 (string-append "LDFLAGS=-Wl,-rpath="
1905 (assoc-ref %outputs "out") "/lib"))))
1906 (inputs `(("zlib" ,zlib)))
1907 (home-page "http://fallabs.com/kyotocabinet/")
1908 (synopsis
1909 "Kyoto Cabinet is a modern implementation of the DBM database")
1910 (description
1911 "Kyoto Cabinet is a standalone file-based database that supports Hash
1912 and B+ Tree data storage models. It is a fast key-value lightweight
1913 database and supports many programming languages. It is a NoSQL database.")
1914 (license license:gpl3+)))
1915
1916 (define-public tokyocabinet
1917 (package
1918 (name "tokyocabinet")
1919 (version "1.4.48")
1920 (source
1921 (origin
1922 (method url-fetch)
1923 (uri (string-append "http://fallabs.com/tokyocabinet/"
1924 name "-" version ".tar.gz"))
1925 (sha256
1926 (base32
1927 "140zvr0n8kvsl0fbn2qn3f2kh3yynfwnizn4dgbj47m975yg80x0"))))
1928 (build-system gnu-build-system)
1929 (arguments
1930 `(#:configure-flags
1931 (list "--enable-pthread" "--enable-off64" "--enable-fastest"
1932 (string-append "LDFLAGS=-Wl,-rpath="
1933 (assoc-ref %outputs "out") "/lib"))))
1934 (inputs
1935 `(("zlib" ,zlib)))
1936 (home-page "http://fallabs.com/tokyocabinet/")
1937 (synopsis "Tokyo Cabinet is a modern implementation of the DBM database")
1938 (description
1939 "Tokyo Cabinet is a library of routines for managing a database.
1940 The database is a simple data file containing records, each is a pair of a
1941 key and a value. Every key and value is serial bytes with variable length.
1942 Both binary data and character string can be used as a key and a value.
1943 There is neither concept of data tables nor data types. Records are
1944 organized in hash table, B+ tree, or fixed-length array.")
1945 (license license:lgpl2.1+)))
1946
1947 (define-public wiredtiger
1948 (package
1949 (name "wiredtiger")
1950 (version "2.9.1")
1951 (source (origin
1952 (method url-fetch)
1953 (uri (string-append
1954 "http://source.wiredtiger.com/releases/wiredtiger-"
1955 version ".tar.bz2"))
1956 (sha256
1957 (base32
1958 "0krwnb2zfbhvjaskwl875qzd3y626s84zcciq2mxr5c5riw3yh6s"))))
1959 (build-system gnu-build-system)
1960 (arguments
1961 '(#:configure-flags '("--enable-lz4" "--with-builtins=snappy,zlib")
1962 #:phases
1963 (modify-phases %standard-phases
1964 (add-before 'check 'disable-test/fops
1965 (lambda _
1966 ;; XXX: timed out after 3600 seconds of silence
1967 (substitute* "Makefile"
1968 (("test/fops") ""))
1969 #t)))))
1970 (inputs
1971 `(("lz4" ,lz4)
1972 ("zlib" ,zlib)
1973 ("snappy" ,snappy)))
1974 (home-page "http://source.wiredtiger.com/")
1975 (synopsis "NoSQL data engine")
1976 (description
1977 "WiredTiger is an extensible platform for data management. It supports
1978 row-oriented storage (where all columns of a row are stored together),
1979 column-oriented storage (where columns are stored in groups, allowing for
1980 more efficient access and storage of column subsets) and log-structured merge
1981 trees (LSM), for sustained throughput under random insert workloads.")
1982 (license license:gpl3) ; or GPL-2
1983 ;; configure.ac: WiredTiger requires a 64-bit build.
1984 (supported-systems '("x86_64-linux" "mips64el-linux" "aarch64-linux"))))
1985
1986 (define-public wiredtiger-3
1987 (package
1988 (inherit wiredtiger)
1989 (name "wiredtiger")
1990 (version "3.1.0")
1991 (source (origin
1992 (method url-fetch)
1993 (uri (string-append "http://source.wiredtiger.com/releases/wiredtiger-"
1994 version ".tar.bz2"))
1995 (sha256
1996 (base32
1997 "014awypv579ascg4jbx4pndj2wld337m79yyzrzyr7hxrff139jx"))))))
1998
1999 (define-public guile-wiredtiger
2000 (package
2001 (name "guile-wiredtiger")
2002 (version "0.7.0")
2003 (source (origin
2004 (method git-fetch)
2005 (uri (git-reference
2006 (url "https://framagit.org/a-guile-mind/guile-wiredtiger.git")
2007 (commit "340ad4bc2ff4dcc6216a2f5c6f9172ca320ac66b")))
2008 (file-name (string-append name "-" version "-checkout"))
2009 (sha256
2010 (base32
2011 "15j36bvxxzil7qpwlmh1rffqpva3ynvrcpqhhqbj2c9208ayz595"))))
2012 (build-system gnu-build-system)
2013 (arguments
2014 '(#:parallel-tests? #f ;; tests can't be run in parallel, yet.
2015 #:configure-flags
2016 (list (string-append "--with-libwiredtiger-prefix="
2017 (assoc-ref %build-inputs "wiredtiger")))
2018 #:make-flags '("GUILE_AUTO_COMPILE=0")))
2019 (native-inputs
2020 `(("autoconf" ,autoconf)
2021 ("automake" ,automake)
2022 ("pkg-config" ,pkg-config)))
2023 (inputs
2024 `(("wiredtiger" ,wiredtiger-3)
2025 ("guile" ,guile-2.2)))
2026 (propagated-inputs
2027 `(("guile-bytestructures" ,guile-bytestructures)))
2028 (synopsis "WiredTiger bindings for GNU Guile")
2029 (description
2030 "This package provides Guile bindings to the WiredTiger ``NoSQL''
2031 database.")
2032 (home-page "https://framagit.org/a-guile-mind/guile-wiredtiger")
2033 (license license:gpl3+)))
2034
2035 (define-public perl-db-file
2036 (package
2037 (name "perl-db-file")
2038 (version "1.852")
2039 (source
2040 (origin
2041 (method url-fetch)
2042 (uri (string-append
2043 "mirror://cpan/authors/id/P/PM/PMQS/DB_File-"
2044 version
2045 ".tar.gz"))
2046 (sha256
2047 (base32
2048 "14c30xyqx9c1hxw40bqbzls41al8gmklxv5jbk2kknmn4dsrbdrs"))))
2049 (build-system perl-build-system)
2050 (inputs `(("bdb" ,bdb)))
2051 (native-inputs `(("perl-test-pod" ,perl-test-pod)))
2052 (arguments
2053 `(#:phases (modify-phases %standard-phases
2054 (add-before
2055 'configure 'modify-config.in
2056 (lambda* (#:key inputs #:allow-other-keys)
2057 (substitute* "config.in"
2058 (("/usr/local/BerkeleyDB") (assoc-ref inputs "bdb")))
2059 #t)))))
2060 (home-page "https://metacpan.org/release/DB_File")
2061 (synopsis
2062 "Perl5 access to Berkeley DB version 1.x")
2063 (description
2064 "The DB::File module provides Perl bindings to the Berkeley DB version 1.x.")
2065 (license license:perl-license)))
2066
2067 (define-public lmdb
2068 (package
2069 (name "lmdb")
2070 (version "0.9.24")
2071 (source
2072 (origin
2073 (method git-fetch)
2074 (uri (git-reference
2075 (url "https://github.com/LMDB/lmdb.git")
2076 (commit (string-append "LMDB_" version))))
2077 (file-name (git-file-name name version))
2078 (sha256
2079 (base32 "088q6m8fvr12w43s461h7cvpg5hj8csaqj6n9pci150dz7bk5lxm"))))
2080 (build-system gnu-build-system)
2081 (arguments
2082 `(#:test-target "test"
2083 #:phases
2084 (modify-phases %standard-phases
2085 (replace 'configure
2086 (lambda* (#:key outputs #:allow-other-keys)
2087 (chdir "libraries/liblmdb")
2088 (substitute* "Makefile"
2089 (("/usr/local") (assoc-ref outputs "out")))
2090 #t)))))
2091 (home-page "https://symas.com/products/lightning-memory-mapped-database")
2092 (synopsis "Lightning Memory-Mapped Database library")
2093 (description
2094 "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance
2095 transactional database. Unlike more complex relational databases, LMDB handles
2096 only key-value pairs (stored as arbitrary byte arrays) and relies on the
2097 underlying operating system for caching and locking, keeping the code small and
2098 simple.
2099 The use of ‘zero-copy’ memory-mapped files combines the persistence of classic
2100 disk-based databases with high read performance that scales linearly over
2101 multiple cores. The size of each database is limited only by the size of the
2102 virtual address space — not physical RAM.")
2103 (license license:openldap2.8)))
2104
2105 (define-public lmdbxx
2106 (package
2107 (name "lmdbxx")
2108 (version "0.9.14.0")
2109 (source
2110 (origin
2111 (method git-fetch)
2112 (uri (git-reference
2113 (url "https://github.com/drycpp/lmdbxx.git")
2114 (commit version)))
2115 (file-name (git-file-name name version))
2116 (sha256
2117 (base32 "1jmb9wg2iqag6ps3z71bh72ymbcjrb6clwlkgrqf1sy80qwvlsn6"))))
2118 (arguments
2119 `(#:make-flags
2120 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
2121 #:phases
2122 (modify-phases %standard-phases
2123 (delete 'configure))))
2124 (build-system gnu-build-system)
2125 (inputs `(("lmdb" ,lmdb)))
2126 (home-page "http://lmdbxx.sourceforge.net")
2127 (synopsis "C++11 wrapper for the LMDB embedded B+ tree database library")
2128 (description "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the
2129 @code{LMDB} embedded database library, offering both an error-checked
2130 procedural interface and an object-oriented resource interface with RAII
2131 semantics.")
2132 (license license:unlicense)))
2133
2134 (define-public libpqxx
2135 (package
2136 (name "libpqxx")
2137 (version "4.0.1")
2138 (source (origin
2139 (method url-fetch)
2140 (uri (string-append
2141 "http://pqxx.org/download/software/libpqxx/"
2142 name "-" version ".tar.gz"))
2143 (sha256
2144 (base32
2145 "0f6wxspp6rx12fkasanb0z2g2gc8dhcfwnxagx8wwqbpg6ifsz09"))))
2146 (build-system gnu-build-system)
2147 (native-inputs
2148 `(("python" ,python-2)))
2149 (inputs `(("postgresql" ,postgresql)))
2150 (arguments
2151 `(#:tests? #f ; # FAIL: 1
2152 #:phases
2153 (modify-phases %standard-phases
2154 (add-before 'configure 'fix-sed-command
2155 (lambda _
2156 ;; Newer sed versions error out if double brackets are not used.
2157 (substitute* "configure"
2158 (("\\[:space:\\]") "[[:space:]]"))
2159 #t)))))
2160 (synopsis "C++ connector for PostgreSQL")
2161 (description
2162 "Libpqxx is a C++ library to enable user programs to communicate with the
2163 PostgreSQL database back-end. The database back-end can be local or it may be
2164 on another machine, accessed via TCP/IP.")
2165 (home-page "http://pqxx.org/")
2166 (license license:bsd-3)))
2167
2168 (define-public python-peewee
2169 (package
2170 (name "python-peewee")
2171 (version "2.10.2")
2172 (source
2173 (origin
2174 (method url-fetch)
2175 (uri (pypi-uri "peewee" version))
2176 (sha256
2177 (base32
2178 "10f2mrd5hw6rjklrzaix2lsxlgc8vx3xak54arcy6yd791zhchi3"))))
2179 (build-system python-build-system)
2180 (arguments
2181 `(#:tests? #f)) ; Fails to import test data
2182 (native-inputs
2183 `(("python-cython" ,python-cython)))
2184 (home-page "https://github.com/coleifer/peewee/")
2185 (synopsis "Small object-relational mapping utility")
2186 (description
2187 "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee
2188 handles converting between pythonic values and those used by databases, so you
2189 can use Python types in your code without having to worry. It has built-in
2190 support for sqlite, mysql and postgresql. If you already have a database, you
2191 can autogenerate peewee models using @code{pwiz}, a model generator.")
2192 (license license:expat)))
2193
2194 (define-public python2-peewee
2195 (package-with-python2 python-peewee))
2196
2197 (define-public python-tortoise-orm
2198 (package
2199 (name "python-tortoise-orm")
2200 (version "0.16.3")
2201 (source
2202 (origin
2203 (method url-fetch)
2204 (uri (pypi-uri "tortoise-orm" version))
2205 (sha256
2206 (base32
2207 "01hbvfyxs2qd1mjc96aipwsdxxhydw8ww686r4gsf87bl6f98dvz"))))
2208 (build-system python-build-system)
2209 ;; Disable tests for now. They pull in a lot of dependencies.
2210 (arguments `(#:tests? #f))
2211 (native-inputs
2212 `(("python-ciso8601" ,python-ciso8601)
2213 ("python-asynctest" ,python-asynctest)
2214 ("python-nose2" ,python-nose2)))
2215 (propagated-inputs
2216 `(("python-aiosqlite" ,python-aiosqlite)
2217 ("python-pypika" ,python-pypika)
2218 ("python-typing-extensions"
2219 ,python-typing-extensions)))
2220 (home-page
2221 "https://github.com/tortoise/tortoise-orm")
2222 (synopsis
2223 "Easy async ORM for python, built with relations in mind")
2224 (description
2225 "Tortoise ORM is an easy-to-use asyncio ORM (Object Relational Mapper)
2226 inspired by Django. Tortoise ORM was build with relations in mind and
2227 admiration for the excellent and popular Django ORM. It’s engraved in its
2228 design that you are working not with just tables, you work with relational
2229 data.")
2230 (license license:asl2.0)))
2231
2232 (define-public sqlcipher
2233 (package
2234 (name "sqlcipher")
2235 (version "3.4.2")
2236 (source
2237 (origin
2238 (method url-fetch)
2239 (uri (string-append "https://github.com/sqlcipher/" name
2240 "/archive/v" version ".tar.gz"))
2241 (sha256
2242 (base32 "1nxarwbci8jx99f1d0y1ivxcv25s78l1p7q6qy28lkpkcx8pm2b9"))
2243 (file-name (string-append name "-" version ".tar.gz"))))
2244 (build-system gnu-build-system)
2245 (inputs
2246 `(("libcrypto" ,openssl)
2247 ("libtcl8.6" ,tcl))) ; required for running the tests
2248 (native-inputs
2249 `(("tcl" ,tcl)))
2250 (arguments
2251 '(#:configure-flags
2252 '("--enable-tempstore=yes"
2253 "CFLAGS=-DSQLITE_HAS_CODEC -DSQLITE_ENABLE_FTS3"
2254 "LDFLAGS=-lcrypto -ltcl8.6"
2255 "--disable-tcl")
2256 ;; tests cannot be run from the Makefile
2257 ;; see: <https://github.com/sqlcipher/sqlcipher/issues/172>
2258 #:test-target "testfixture"
2259 #:phases
2260 (modify-phases %standard-phases
2261 (add-before 'check 'build-test-runner
2262 (assoc-ref %standard-phases 'check))
2263 (replace 'check
2264 (lambda _
2265 (invoke "./testfixture" "test/crypto.test"))))))
2266 (home-page "https://www.zetetic.net/sqlcipher/")
2267 (synopsis
2268 "Library providing transparent encryption of SQLite database files")
2269 (description "SQLCipher is an implementation of SQLite, extended to
2270 provide transparent 256-bit AES encryption of database files. Pages are
2271 encrypted before being written to disk and are decrypted when read back. It’s
2272 well suited for protecting embedded application databases and for mobile
2273 development.")
2274 ;; The source files
2275 ;; src/{crypto.c,crypto_impl.c,crypto.h,crypto_cc.c,crypto_libtomcrypt.c},
2276 ;; src/{crypto_openssl.c,sqlcipher.h}, tool/crypto-speedtest.tcl,
2277 ;; test/crypto.test are licensed under a 3-clause BSD license. All other
2278 ;; source files are in the public domain.
2279 (license (list license:public-domain license:bsd-3))))
2280
2281 (define-public python-pyodbc-c
2282 (package
2283 (name "python-pyodbc-c")
2284 (version "3.1.4")
2285 (source
2286 (origin
2287 (method url-fetch)
2288 (uri (string-append "https://gitlab.com/daym/pyodbc-c/repository/"
2289 "archive.tar.gz?ref=v" version))
2290 (sha256
2291 (base32
2292 "05aq2297k779xidmxcwkrrxjvj1bh2q7d9a1rcjv6zr15y764ga9"))
2293 (file-name (string-append name "-" version ".tar.gz"))))
2294 (build-system python-build-system)
2295 (inputs
2296 `(("unixodbc" ,unixodbc)))
2297 (arguments
2298 `(;; No unit tests exist.
2299 #:tests? #f))
2300 (home-page "https://github.com/mkleehammer/pyodbc")
2301 (synopsis "Python ODBC Library")
2302 (description "@code{python-pyodbc-c} provides a Python DB-API driver
2303 for ODBC.")
2304 (license (license:x11-style "file://LICENSE.TXT"))))
2305
2306 (define-public python2-pyodbc-c
2307 (package-with-python2 python-pyodbc-c))
2308
2309 (define-public python-pyodbc
2310 (package
2311 (name "python-pyodbc")
2312 (version "4.0.30")
2313 (source
2314 (origin
2315 (method url-fetch)
2316 (uri (pypi-uri "pyodbc" version))
2317 (sha256
2318 (base32 "0skjpraar6hcwsy82612bpj8nw016ncyvvq88j5syrikxgp5saw5"))
2319 (file-name (string-append name "-" version ".tar.gz"))))
2320 (build-system python-build-system)
2321 (inputs
2322 `(("unixodbc" ,unixodbc)))
2323 (arguments
2324 `(#:tests? #f)) ; no unit tests exist
2325 (home-page "https://github.com/mkleehammer/pyodbc")
2326 (synopsis "Python ODBC Library")
2327 (description "@code{python-pyodbc} provides a Python DB-API driver
2328 for ODBC.")
2329 (license (license:x11-style "file:///LICENSE.TXT"))))
2330
2331 (define-public python2-pyodbc
2332 (package-with-python2 python-pyodbc))
2333
2334 (define-public mdbtools
2335 (package
2336 (name "mdbtools")
2337 (version "0.7.1")
2338 (source
2339 (origin
2340 (method git-fetch)
2341 (uri (git-reference
2342 (url "https://github.com/brianb/mdbtools.git")
2343 (commit version)))
2344 (file-name (git-file-name name version))
2345 (sha256
2346 (base32
2347 "0gwcpp9y09xhs21g7my2fs8ncb8i6ahlyixcx8jd3q97jbzj441l"))))
2348 (build-system gnu-build-system)
2349 (inputs
2350 `(("glib" ,glib)))
2351 (native-inputs
2352 `(("autoconf" ,autoconf)
2353 ("automake" ,automake)
2354 ("libtool" ,libtool)
2355 ("pkg-config" ,pkg-config)
2356 ("txt2man" ,txt2man)
2357 ("which" ,which)))
2358 (home-page "http://mdbtools.sourceforge.net/")
2359 (synopsis "Read Microsoft Access databases")
2360 (description "MDB Tools is a set of tools and applications to read the
2361 proprietary MDB file format used in Microsoft's Access database package. This
2362 includes programs to export schema and data from Microsoft's Access database
2363 file format to other databases such as MySQL, Oracle, Sybase, PostgreSQL,
2364 etc., and an SQL engine for performing simple SQL queries.")
2365 (license (list license:lgpl2.0
2366 license:gpl2+))))
2367
2368 (define-public python-lmdb
2369 (package
2370 (name "python-lmdb")
2371 (version "0.95")
2372 (source (origin
2373 (method url-fetch)
2374 (uri (pypi-uri "lmdb" version))
2375 (sha256
2376 (base32
2377 "0nx9f193gzl33r1lbqhb96h1igya7pz8wmahr8m9x5zgc05hal91"))
2378 (modules '((guix build utils)))
2379 (snippet
2380 ;; Delete bundled lmdb source files.
2381 '(begin
2382 (for-each delete-file (list "lib/lmdb.h"
2383 "lib/mdb.c"
2384 "lib/midl.c"
2385 "lib/midl.h"))
2386 #t))))
2387 (build-system python-build-system)
2388 (inputs
2389 `(("lmdb" ,lmdb)))
2390 (arguments
2391 `(#:phases
2392 (modify-phases %standard-phases
2393 (add-before 'build 'use-system-lmdb
2394 (lambda* (#:key inputs #:allow-other-keys)
2395 (let ((lmdb (assoc-ref inputs "lmdb")))
2396 (setenv "LMDB_FORCE_SYSTEM" "set")
2397 (setenv "LMDB_INCLUDEDIR" (string-append lmdb "/include"))
2398 (setenv "LMDB_LIBDIR" (string-append lmdb "/lib"))
2399 #t))))
2400 ;; Tests fail with: ‘lmdb.tool: Please specify environment (--env)’.
2401 #:tests? #f))
2402 (home-page "https://github.com/dw/py-lmdb")
2403 (synopsis "Python binding for the ‘Lightning’ database (LMDB)")
2404 (description
2405 "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning
2406 Memory-Mapped Database} (LMDB), a high-performance key-value store.")
2407 (license
2408 (list license:openldap2.8
2409 ;; ‘lib/win32/inttypes.h’ and ‘lib/win32-stdint/stdint.h’ are BSD-3,
2410 ;; but not actually needed on platforms currently supported by Guix.
2411 license:bsd-3))))
2412
2413 (define-public python2-lmdb
2414 (package-with-python2 python-lmdb))
2415
2416 (define-public python-orator
2417 (package
2418 (name "python-orator")
2419 (version "0.9.9")
2420 (source (origin
2421 (method url-fetch)
2422 (uri (pypi-uri "orator" version))
2423 (sha256
2424 (base32
2425 "0mbgybz63ryhr9p1f4glnls5c57jp6il3dw0kf97f3pj80687rvg"))))
2426 (build-system python-build-system)
2427 ;; FIXME: Tests are not distributed with PyPI, and the repository
2428 ;; does not contain setup.py. How to test?
2429 (arguments '(#:tests? #f))
2430 (propagated-inputs
2431 `(("python-backpack" ,python-backpack)
2432 ("python-blinker" ,python-blinker)
2433 ("python-cleo" ,python-cleo)
2434 ("python-faker" ,python-faker)
2435 ("python-inflection" ,python-inflection)
2436 ("python-lazy-object-proxy" ,python-lazy-object-proxy)
2437 ("python-pendulum" ,python-pendulum)
2438 ("python-pyaml" ,python-pyaml)
2439 ("python-pygments" ,python-pygments)
2440 ("python-pyyaml" ,python-pyyaml)
2441 ("python-simplejson" ,python-simplejson)
2442 ("python-six" ,python-six)
2443 ("python-wrapt" ,python-wrapt)))
2444 (home-page "https://orator-orm.com/")
2445 (synopsis "ActiveRecord ORM for Python")
2446 (description
2447 "Orator provides a simple ActiveRecord-like Object Relational Mapping
2448 implementation for Python.")
2449 (license license:expat)
2450 (properties `((python2-variant . ,(delay python2-orator))))))
2451
2452 (define-public python2-orator
2453 (package-with-python2 (strip-python2-variant python-orator)))
2454
2455 (define-public virtuoso-ose
2456 (package
2457 (name "virtuoso-ose")
2458 (version "7.2.5")
2459 (source
2460 (origin
2461 (method url-fetch)
2462 (uri (string-append
2463 "https://github.com/openlink/virtuoso-opensource/releases/"
2464 "download/v" version "/virtuoso-opensource-" version ".tar.gz"))
2465 (sha256
2466 (base32 "0r1xakclkfi69pzh8z2k16z3x0m49pxp764icj0ad4w4bb97fr42"))))
2467 (build-system gnu-build-system)
2468 (arguments
2469 `(#:tests? #f ; Tests require a network connection.
2470 ;; TODO: Removing the libsrc/zlib source directory breaks the build.
2471 ;; This indicates that the internal zlib code may still be used.
2472 #:configure-flags '("--without-internal-zlib"
2473 "--with-readline")))
2474 (inputs
2475 `(("openssl" ,openssl-1.0)
2476 ("net-tools" ,net-tools)
2477 ("readline" ,readline)
2478 ("zlib" ,zlib)))
2479 (home-page "http://vos.openlinksw.com/owiki/wiki/VOS/")
2480 (synopsis "Multi-model database system")
2481 (description "Virtuoso is a scalable cross-platform server that combines
2482 relational, graph, and document data management with web application server
2483 and web services platform functionality.")
2484 ;; configure: error: ... can only be build on 64bit platforms
2485 (supported-systems '("x86_64-linux" "mips64el-linux" "aarch64-linux"))
2486 (license license:gpl2)))
2487
2488 (define-public python-ccm
2489 (package
2490 (name "python-ccm")
2491 (version "2.1.6")
2492 (source
2493 (origin
2494 (method url-fetch)
2495 (uri (pypi-uri "ccm" version))
2496 (sha256
2497 (base32
2498 "177dfxsmk3k4cih6fh6v8d91bh4nqx7ns6pc07w7m7i3cvdx3c8n"))))
2499 (build-system python-build-system)
2500 (propagated-inputs
2501 `(("python-pyyaml" ,python-pyyaml)
2502 ;; Not listed in setup.py, but used in ccmlib/node.py for full
2503 ;; functionality
2504 ("python-psutil" ,python-psutil)
2505 ("python-six" ,python-six)))
2506 (home-page "https://github.com/pcmanus/ccm")
2507 (synopsis "Cassandra Cluster Manager for Apache Cassandra clusters on
2508 localhost")
2509 (description "Cassandra Cluster Manager is a development tool for testing
2510 local Cassandra clusters. It creates, launches and removes Cassandra clusters
2511 on localhost.")
2512 (license license:asl2.0)))
2513
2514 (define-public python2-ccm
2515 (package-with-python2 python-ccm))
2516
2517 (define-public python2-pysqlite
2518 (package
2519 (name "python2-pysqlite")
2520 (version "2.8.3")
2521 (source
2522 (origin
2523 (method url-fetch)
2524 (uri (pypi-uri "pysqlite" version))
2525 (sha256
2526 (base32
2527 "1424gwq9sil2ffmnizk60q36vydkv8rxs6m7xs987kz8cdc37lqp"))))
2528 (build-system python-build-system)
2529 (inputs
2530 `(("sqlite" ,sqlite)))
2531 (arguments
2532 `(#:python ,python-2 ; incompatible with Python 3
2533 #:tests? #f)) ; no test target
2534 (home-page "https://github.com/ghaering/pysqlite")
2535 (synopsis "SQLite bindings for Python")
2536 (description
2537 "Pysqlite provides SQLite bindings for Python that comply to the
2538 Database API 2.0T.")
2539 (license license:zlib)))
2540
2541 (define-public python-sqlalchemy
2542 (package
2543 (name "python-sqlalchemy")
2544 (version "1.3.15")
2545 (source
2546 (origin
2547 (method url-fetch)
2548 (uri (pypi-uri "SQLAlchemy" version))
2549 (sha256
2550 (base32 "0iglkvymfp35zm5pxy5kzqvcv96kkas0chqdx7xpla86sspa9k64"))))
2551 (build-system python-build-system)
2552 (native-inputs
2553 `(("python-cython" ,python-cython) ; for C extensions
2554 ("python-pytest" ,python-pytest)
2555 ("python-mock" ,python-mock))) ; for tests
2556 (arguments
2557 `(#:phases
2558 (modify-phases %standard-phases
2559 (replace 'check
2560 (lambda _ (invoke "py.test"))))))
2561 (home-page "https://www.sqlalchemy.org")
2562 (synopsis "Database abstraction library")
2563 (description
2564 "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that
2565 gives application developers the full power and flexibility of SQL. It
2566 provides a full suite of well known enterprise-level persistence patterns,
2567 designed for efficient and high-performing database access, adapted into a
2568 simple and Pythonic domain language.")
2569 (license license:x11)))
2570
2571 (define-public python2-sqlalchemy
2572 (package-with-python2 python-sqlalchemy))
2573
2574 (define-public python-sqlalchemy-utils
2575 (package
2576 (name "python-sqlalchemy-utils")
2577 (version "0.32.21")
2578 (source
2579 (origin
2580 (method url-fetch)
2581 (uri (pypi-uri "SQLAlchemy-Utils" version))
2582 (sha256
2583 (base32
2584 "1myn71dn8j74xglyh46f12sh8ywb7j0j732rzwq70kvwwnq32m73"))))
2585 (build-system python-build-system)
2586 (arguments
2587 '(#:tests? #f)) ; FIXME: Many tests require a running database server.
2588 ;; #:phases
2589 ;; (modify-phases %standard-phases
2590 ;; (replace 'check
2591 ;; (lambda _
2592 ;; (zero? (system* "py.test" "sqlalchemy_utils" "tests")))))
2593 (propagated-inputs
2594 `(("python-six" ,python-six)
2595 ("python-sqlalchemy" ,python-sqlalchemy)))
2596 (native-inputs
2597 `(("python-dateutil" ,python-dateutil)
2598 ("python-flexmock" ,python-flexmock)
2599 ("python-psycopg2" ,python-psycopg2)
2600 ("python-pytest" ,python-pytest)
2601 ("python-pytz" ,python-pytz)))
2602 (home-page "https://github.com/kvesteri/sqlalchemy-utils")
2603 (synopsis "Various utility functions for SQLAlchemy")
2604 (description
2605 "SQLAlchemy-utils provides various utility functions and custom data types
2606 for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.
2607
2608 You might also want to install the following optional dependencies:
2609 @enumerate
2610 @item @code{python-passlib}
2611 @item @code{python-babel}
2612 @item @code{python-cryptography}
2613 @item @code{python-pytz}
2614 @item @code{python-psycopg2}
2615 @item @code{python-furl}
2616 @item @code{python-flask-babel}
2617 @end enumerate
2618 ")
2619 (license license:bsd-3)))
2620
2621 (define-public python2-sqlalchemy-utils
2622 (package-with-python2 python-sqlalchemy-utils))
2623
2624 (define-public python-alembic
2625 (package
2626 (name "python-alembic")
2627 (version "1.4.1")
2628 (source
2629 (origin
2630 (method url-fetch)
2631 (uri (pypi-uri "alembic" version))
2632 (patches (search-patches "python-alembic-exceptions-cause.patch"))
2633 (sha256
2634 (base32
2635 "0a4hzn76csgbf1px4f5vfm256byvjrqkgi9869nkcjrwjn35c6kr"))))
2636 (build-system python-build-system)
2637 (arguments
2638 '(#:phases (modify-phases %standard-phases
2639 (replace 'check
2640 (lambda _
2641 (invoke "pytest" "-vv"))))))
2642 (native-inputs
2643 `(("python-mock" ,python-mock)
2644 ("python-pytest-cov" ,python-pytest-cov)))
2645 (propagated-inputs
2646 `(("python-dateutil" ,python-dateutil)
2647 ("python-sqlalchemy" ,python-sqlalchemy)
2648 ("python-mako" ,python-mako)
2649 ("python-editor" ,python-editor)))
2650 (home-page "https://bitbucket.org/zzzeek/alembic")
2651 (synopsis "Database migration tool for SQLAlchemy")
2652 (description
2653 "Alembic is a lightweight database migration tool for usage with the
2654 SQLAlchemy Database Toolkit for Python.")
2655 (license license:expat)))
2656
2657 (define-public python2-alembic
2658 (package-with-python2 python-alembic))
2659
2660 (define-public python-pickleshare
2661 (package
2662 (name "python-pickleshare")
2663 (version "0.7.5")
2664 (source
2665 (origin
2666 (method url-fetch)
2667 (uri (pypi-uri "pickleshare" version))
2668 (sha256
2669 (base32 "1jmghg3c53yp1i8cm6pcrm280ayi8621rwyav9fac7awjr3kss47"))))
2670 (build-system python-build-system)
2671 (arguments
2672 `(#:phases (modify-phases %standard-phases
2673 (replace 'check
2674 (lambda _
2675 (invoke "pytest"))))))
2676 (native-inputs
2677 `(("python-pytest" ,python-pytest)))
2678 (home-page "https://github.com/vivainio/pickleshare")
2679 (synopsis "Tiny key value database with concurrency support")
2680 (description
2681 "PickleShare is a small ‘shelve’-like datastore with concurrency support.
2682 Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike
2683 shelve, many processes can access the database simultaneously. Changing a
2684 value in database is immediately visible to other processes accessing the same
2685 database. Concurrency is possible because the values are stored in separate
2686 files. Hence the “database” is a directory where all files are governed by
2687 PickleShare.")
2688 (properties `((python2-variant . ,(delay python2-pickleshare))))
2689 (license license:expat)))
2690
2691 (define-public python2-pickleshare
2692 (let ((pickleshare (package-with-python2
2693 (strip-python2-variant python-pickleshare))))
2694 (package (inherit pickleshare)
2695 (propagated-inputs `(("python2-pathlib2" ,python2-pathlib2)
2696 ,@(package-propagated-inputs pickleshare))))))
2697
2698 (define-public python-apsw
2699 (package
2700 (name "python-apsw")
2701 (version "3.28.0-r1")
2702 (source
2703 (origin
2704 (method url-fetch)
2705 (uri (string-append "https://github.com/rogerbinns/apsw/releases"
2706 "/download/" version "/apsw-" version ".zip"))
2707 (sha256
2708 (base32
2709 "0x62534l5hcgwrc4k2gxpdzc1sxlhm6m4nwlay74rnmr77qh8wly"))))
2710 (build-system python-build-system)
2711 (native-inputs
2712 `(("unzip" ,unzip)))
2713 (inputs
2714 `(("sqlite" ,sqlite)))
2715 (arguments
2716 `(#:phases
2717 (modify-phases %standard-phases
2718 (replace 'build
2719 (lambda _
2720 (invoke "python" "setup.py" "build" "--enable-all-extensions")
2721 #t))
2722 (add-after 'build 'build-test-helper
2723 (lambda _
2724 (invoke "gcc" "-fPIC" "-shared" "-o" "./testextension.sqlext"
2725 "-I." "-Isqlite3" "src/testextension.c")
2726 #t))
2727 (replace 'check
2728 (lambda* (#:key inputs outputs #:allow-other-keys)
2729 (add-installed-pythonpath inputs outputs)
2730 (invoke "python" "setup.py" "test")
2731 #t)))))
2732 (home-page "https://github.com/rogerbinns/apsw/")
2733 (synopsis "Another Python SQLite Wrapper")
2734 (description "APSW is a Python wrapper for the SQLite
2735 embedded relational database engine. In contrast to other wrappers such as
2736 pysqlite it focuses on being a minimal layer over SQLite attempting just to
2737 translate the complete SQLite API into Python.")
2738 (license license:zlib)))
2739
2740 (define-public python2-apsw
2741 (package-with-python2 python-apsw))
2742
2743 (define-public python-aiosqlite
2744 (package
2745 (name "python-aiosqlite")
2746 (version "0.11.0")
2747 (source
2748 (origin
2749 (method url-fetch)
2750 (uri (pypi-uri "aiosqlite" version))
2751 (sha256
2752 (base32
2753 "1f3zdldp9zgrw6qz5fsp3wa5zw73cjf139pj4vf24ryv895320jg"))))
2754 (build-system python-build-system)
2755 (native-inputs
2756 `(("python-aiounittest" ,python-aiounittest)))
2757 (home-page "https://github.com/jreese/aiosqlite")
2758 (synopsis
2759 "Asyncio bridge for sqlite3")
2760 (description
2761 "The package aiosqlite replicates the standard sqlite3 module, but with
2762 async versions of all the standard connection and cursor methods, and context
2763 managers for automatically closing connections.")
2764 (license license:expat)))
2765
2766 (define-public python2-neo4j-driver
2767 (package
2768 (name "python2-neo4j-driver")
2769 ;; NOTE: When upgrading to 1.5.0, please add a python3 variant.
2770 (version "1.4.0")
2771 (source (origin
2772 (method url-fetch)
2773 (uri (pypi-uri "neo4j-driver" version))
2774 (sha256
2775 (base32
2776 "011r1vh182p8mm83d8dz9rfnc3l7rf7fd00cyrbyfzi71jmc4g98"))))
2777 (build-system python-build-system)
2778 (arguments
2779 `(#:python ,python-2))
2780 (home-page "https://neo4j.com/developer/python/")
2781 (synopsis "Neo4j driver code written in Python")
2782 (description "This package provides the Neo4j Python driver that connects
2783 to the database using Neo4j's binary protocol. It aims to be minimal, while
2784 being idiomatic to Python.")
2785 (license license:asl2.0)))
2786
2787 (define-public python2-py2neo
2788 (package
2789 (name "python2-py2neo")
2790 (version "3.1.2")
2791 (source (origin
2792 (method url-fetch)
2793 (uri (pypi-uri "py2neo" version))
2794 (sha256
2795 (base32
2796 "1f1q95vqcvlc3nsc33p841swnjdcjazddlq2dzi3qfnjqjrajxw1"))))
2797 (build-system python-build-system)
2798 (arguments
2799 `(#:python ,python-2))
2800 (home-page "https://py2neo.org")
2801 (synopsis "Library and toolkit for working with Neo4j in Python")
2802 (description "This package provides a client library and toolkit for
2803 working with Neo4j from within Python applications and from the command
2804 line. The core library has no external dependencies and has been carefully
2805 designed to be easy and intuitive to use.")
2806 (license license:asl2.0)))
2807
2808 (define-public python-psycopg2
2809 (package
2810 (name "python-psycopg2")
2811 (version "2.8.4")
2812 (source
2813 (origin
2814 (method url-fetch)
2815 (uri (pypi-uri "psycopg2" version))
2816 (sha256
2817 (base32 "1djvh98pi4hjd8rxbq8qzc63bg8v78k33yg6pl99wak61b6fb67q"))))
2818 (build-system python-build-system)
2819 (arguments
2820 ;; Tests would require a postgresql database "psycopg2_test"
2821 ;; and a running postgresql database management service.
2822 `(#:tests? #f)) ; TODO re-enable after providing a test-db.
2823 (inputs
2824 `(("postgresql" ,postgresql))) ; libpq
2825 (home-page "http://initd.org/psycopg/")
2826 (synopsis "Python PostgreSQL adapter")
2827 (description
2828 "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API
2829 2.0.")
2830 (license license:lgpl3+)))
2831
2832 (define-public python2-psycopg2
2833 (package-with-python2 python-psycopg2))
2834
2835 (define-public python-sadisplay
2836 (package
2837 (name "python-sadisplay")
2838 (version "0.4.8")
2839 (source
2840 (origin
2841 (method url-fetch)
2842 (uri (pypi-uri "sadisplay" version))
2843 (sha256
2844 (base32
2845 "01d9lxhmgpb68gy8rd6zj6fcwp84n2qq210n1qsk3qbsir79bzh4"))))
2846 (build-system python-build-system)
2847 (propagated-inputs
2848 `(("python-sqlalchemy" ,python-sqlalchemy)))
2849 (native-inputs
2850 ;; For tests.
2851 `(("python-nose" ,python-nose)))
2852 (home-page "https://bitbucket.org/estin/sadisplay")
2853 (synopsis "SQLAlchemy schema displayer")
2854 (description "This package provides a program to build Entity
2855 Relationship diagrams from a SQLAlchemy model (or directly from the
2856 database).")
2857 (license license:bsd-3)))
2858
2859 (define-public python2-sadisplay
2860 (package-with-python2 python-sadisplay))
2861
2862 (define-public python-mysqlclient
2863 (package
2864 (name "python-mysqlclient")
2865 (version "1.3.13")
2866 (source
2867 (origin
2868 (method url-fetch)
2869 (uri (pypi-uri "mysqlclient" version))
2870 (sha256
2871 (base32
2872 "0kv4a1icwdav8jpl7qvnr931lw5h3v22ids6lwq6qpi1hjzf33pz"))))
2873 (build-system python-build-system)
2874 (native-inputs
2875 `(("nose" ,python-nose)
2876 ("mock" ,python-mock)
2877 ("py.test" ,python-pytest)))
2878 (inputs
2879 `(("mysql" ,mariadb "lib")
2880 ("mysql-dev" ,mariadb "dev")
2881 ("libz" ,zlib)
2882 ("openssl" ,openssl)))
2883 (home-page "https://github.com/PyMySQL/mysqlclient-python")
2884 (synopsis "MySQLdb is an interface to the popular MySQL database server for Python")
2885 (description "MySQLdb is an interface to the popular MySQL database server
2886 for Python. The design goals are:
2887 @enumerate
2888 @item Compliance with Python database API version 2.0 [PEP-0249],
2889 @item Thread-safety,
2890 @item Thread-friendliness (threads will not block each other).
2891 @end enumerate")
2892 (license license:gpl2)))
2893
2894 (define-public python2-mysqlclient
2895 (package-with-python2 python-mysqlclient))
2896
2897 (define-public python-hiredis
2898 (package
2899 (name "python-hiredis")
2900 (version "0.2.0")
2901 (source
2902 (origin
2903 (method url-fetch)
2904 (uri (pypi-uri "hiredis" version))
2905 (sha256
2906 (base32
2907 "1dfm2k9l9zar9nw9fwmm74zrgraxdxs04vx9li56fjcf289qx5fa"))))
2908 (build-system python-build-system)
2909 (arguments
2910 ;; no tests
2911 `(#:tests? #f))
2912 (home-page "https://github.com/redis/hiredis-py")
2913 (synopsis "Python extension that wraps protocol parsing code in hiredis")
2914 (description "Python-hiredis is a python extension that wraps protocol
2915 parsing code in hiredis. It primarily speeds up parsing of multi bulk replies.")
2916 (license license:bsd-3)))
2917
2918 (define-public python2-hiredis
2919 (package-with-python2 python-hiredis))
2920
2921 (define-public python-fakeredis
2922 (package
2923 (name "python-fakeredis")
2924 (version "1.2.1")
2925 (source
2926 (origin
2927 (method url-fetch)
2928 (uri (pypi-uri "fakeredis" version))
2929 (sha256
2930 (base32
2931 "1s12mn4q4hz7402139khn9fx56kibj7nn0d6w81hn0zs07b90wpc"))))
2932 (build-system python-build-system)
2933 (arguments
2934 ;; no tests
2935 `(#:tests? #f))
2936 (propagated-inputs
2937 `(("python-sortedcontainers" ,python-sortedcontainers)))
2938 (home-page "https://github.com/jamesls/fakeredis")
2939 (synopsis "Fake implementation of redis API for testing purposes")
2940 (description
2941 "Fakeredis is a pure-Python implementation of the redis-py Python client
2942 that simulates talking to a redis server. It was created for a single purpose:
2943 to write unit tests.
2944
2945 Setting up redis is not hard, but one often wants to write unit tests that don't
2946 talk to an external server such as redis. This module can be used as a
2947 reasonable substitute.")
2948 (license license:bsd-3)))
2949
2950 (define-public python2-fakeredis
2951 (package-with-python2 python-fakeredis))
2952
2953 (define-public python-redis
2954 (package
2955 (name "python-redis")
2956 (version "3.3.8")
2957 (source
2958 (origin
2959 (method url-fetch)
2960 (uri (pypi-uri "redis" version))
2961 (sha256
2962 (base32 "0fyxzqax7lcwzwhvnz0i0q6v62hxyv1mv52ywx3bpff9a2vjz8lq"))))
2963 (build-system python-build-system)
2964 ;; Tests require a running Redis server.
2965 (arguments '(#:tests? #f))
2966 ;; As long as we are not running test, we do not need this input :-)
2967 ;;(native-inputs
2968 ;; `(("python-pytest" ,python-pytest)))
2969 (home-page "https://github.com/andymccurdy/redis-py")
2970 (synopsis "Redis Python client")
2971 (description
2972 "This package provides a Python interface to the Redis key-value store.")
2973 (license license:expat)))
2974
2975 (define-public python2-redis
2976 (package-with-python2 python-redis))
2977
2978 (define-public python-rq
2979 (package
2980 (name "python-rq")
2981 (version "0.13.0")
2982 (source
2983 (origin
2984 (method url-fetch)
2985 (uri (pypi-uri "rq" version))
2986 (sha256
2987 (base32 "0xvapd2bxnyq480i48bdkddzlqmv2axbsq85rlfy8k3al8zxxxrf"))))
2988 (build-system python-build-system)
2989 (propagated-inputs
2990 `(("python-click" ,python-click)
2991 ("python-redis" ,python-redis)))
2992 (home-page "https://python-rq.org/")
2993 (synopsis "Simple job queues for Python")
2994 (description
2995 "RQ (Redis Queue) is a simple Python library for queueing jobs and
2996 processing them in the background with workers. It is backed by Redis and it
2997 is designed to have a low barrier to entry.")
2998 (license license:bsd-2)))
2999
3000 (define-public python2-rq
3001 (package-with-python2 python-rq))
3002
3003 (define-public python-trollius-redis
3004 (package
3005 (name "python-trollius-redis")
3006 (version "0.1.4")
3007 (source
3008 (origin
3009 (method url-fetch)
3010 (uri (pypi-uri "trollius_redis" version))
3011 (sha256
3012 (base32
3013 "0k3vypszmgmaipgw9xscvgm79h2zd6p6ci8gdp5sxl6g5kbqr9fy"))))
3014 (build-system python-build-system)
3015 ;; TODO: Tests require packaging 'hiredis'.
3016 (arguments '(#:tests? #f))
3017 (home-page "https://github.com/benjolitz/trollius-redis")
3018 (synopsis "Port of asyncio-redis to trollius")
3019 (description "@code{trollius-redis} is a Redis client for Python
3020 trollius. It is an asynchronous IO (PEP 3156) implementation of the
3021 Redis protocol.")
3022 (license license:bsd-2)))
3023
3024 (define-public python2-trollius-redis
3025 (package-with-python2 python-trollius-redis))
3026
3027 (define-public python-sqlparse
3028 (package
3029 (name "python-sqlparse")
3030 (version "0.2.4")
3031 (source (origin
3032 (method url-fetch)
3033 (uri (pypi-uri "sqlparse" version))
3034 (sha256
3035 (base32
3036 "1v3xh0bkfhb262dbndgzhivpnhdwavdzz8jjhx9vx0xbrx2880nf"))))
3037 (build-system python-build-system)
3038 (arguments
3039 `(#:phases
3040 (modify-phases %standard-phases
3041 (replace 'check
3042 (lambda _ (invoke "py.test"))))))
3043 (native-inputs
3044 `(("python-pytest" ,python-pytest)))
3045 (home-page "https://github.com/andialbrecht/sqlparse")
3046 (synopsis "Non-validating SQL parser")
3047 (description "Sqlparse is a non-validating SQL parser for Python. It
3048 provides support for parsing, splitting and formatting SQL statements.")
3049 (license license:bsd-3)))
3050
3051 (define-public python2-sqlparse
3052 (package-with-python2 python-sqlparse))
3053
3054 (define-public python-sql
3055 (package
3056 (name "python-sql")
3057 (version "1.0.0")
3058 (source
3059 (origin
3060 (method url-fetch)
3061 (uri (pypi-uri "python-sql" version))
3062 (sha256
3063 (base32 "05ni936y0ia9xmryl7mlhbj9i80nnvq1bi4zxhb96rv7yvpb3fqb"))))
3064 (build-system python-build-system)
3065 (home-page "https://python-sql.tryton.org/")
3066 (synopsis "Library to write SQL queries in a pythonic way")
3067 (description "@code{python-sql} is a library to write SQL queries, that
3068 transforms idiomatic python function calls to well-formed SQL queries.")
3069 (license license:bsd-3)))
3070
3071 (define-public python2-sql
3072 (package-with-python2 python-sql))
3073
3074 (define-public python-pypika
3075 (package
3076 (name "python-pypika")
3077 (version "0.36.0")
3078 (source
3079 (origin
3080 (method url-fetch)
3081 (uri (pypi-uri "PyPika" version))
3082 (sha256
3083 (base32
3084 "0qzn5vygirg52dlizm6ayzdc5llq8p2krrx0kymr236lrz89wqp8"))))
3085 (build-system python-build-system)
3086 (native-inputs
3087 `(("python-parameterized" ,python-parameterized)))
3088 (home-page "https://github.com/kayak/pypika")
3089 (synopsis "SQL query builder API for Python")
3090 (description
3091 "PyPika is a python SQL query builder that exposes the full richness of
3092 the SQL language using a syntax that reflects the resulting query.")
3093 (license license:asl2.0)))
3094
3095 (define-public mongo-tools
3096 (package
3097 (name "mongo-tools")
3098 (version "3.4.0")
3099 (source
3100 (origin (method git-fetch)
3101 (uri (git-reference
3102 (url "https://github.com/mongodb/mongo-tools")
3103 (commit (string-append "r" version))))
3104 (file-name (git-file-name name version))
3105 (sha256
3106 (base32
3107 "1bcsz5cvj39a7nsxsfqmz9igrw33j6yli9kffigqyscs52amw7x1"))))
3108 (build-system go-build-system)
3109 (arguments
3110 `(#:import-path "github.com/mongodb/mongo-tools"
3111 #:modules ((srfi srfi-1)
3112 (guix build go-build-system)
3113 (guix build utils))
3114 #:install-source? #f
3115 #:phases
3116 (let ((all-tools
3117 '("bsondump" "mongodump" "mongoexport" "mongofiles"
3118 "mongoimport" "mongooplog" "mongorestore"
3119 "mongostat" "mongotop")))
3120 (modify-phases %standard-phases
3121 (add-after 'unpack 'delete-bundled-source-code
3122 (lambda _
3123 (delete-file-recursively
3124 "src/github.com/mongodb/mongo-tools/vendor")
3125 #t))
3126 (add-after 'delete-bundled-source-code 'patch-source
3127 (lambda _
3128 ;; Remove a redundant argument that causes compilation to fail.
3129 (substitute*
3130 "src/github.com/mongodb/mongo-tools/mongorestore/filepath.go"
3131 (("skipping restore of system.profile collection\", db)")
3132 "skipping restore of system.profile collection\")"))
3133 #t))
3134 (replace 'build
3135 (lambda _
3136 (for-each (lambda (tool)
3137 (let ((command
3138 `("go" "build"
3139 ;; This is where the tests expect to find the
3140 ;; executables
3141 "-o" ,(string-append
3142 "src/github.com/mongodb/mongo-tools/bin/"
3143 tool)
3144 "-v"
3145 "-tags=\"ssl sasl\""
3146 "-ldflags"
3147 "-extldflags=-Wl,-z,now,-z,relro"
3148 ,(string-append
3149 "src/github.com/mongodb/mongo-tools/"
3150 tool "/main/" tool ".go"))))
3151 (simple-format #t "build: running ~A\n"
3152 (string-join command))
3153 (apply invoke command)))
3154 all-tools)
3155 #t))
3156 (replace 'check
3157 (lambda _
3158 (with-directory-excursion "src"
3159 (for-each (lambda (tool)
3160 (invoke
3161 "go" "test" "-v"
3162 (string-append "github.com/mongodb/mongo-tools/"
3163 tool)))
3164 all-tools))
3165 #t))
3166 (replace 'install
3167 (lambda* (#:key outputs #:allow-other-keys)
3168 (for-each (lambda (tool)
3169 (install-file
3170 (string-append "src/github.com/mongodb/mongo-tools/bin/"
3171 tool)
3172 (string-append (assoc-ref outputs "out")
3173 "/bin")))
3174 all-tools)
3175 #t))))))
3176 (native-inputs
3177 `(("go-github.com-howeyc-gopass" ,go-github.com-howeyc-gopass)
3178 ("go-github.com-jessevdk-go-flags" ,go-github.com-jessevdk-go-flags)
3179 ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
3180 ("go-gopkg.in-mgo.v2" ,go-gopkg.in-mgo.v2)
3181 ("go-gopkg.in-tomb.v2" ,go-gopkg.in-tomb.v2)
3182 ("go-github.com-nsf-termbox-go" ,go-github.com-nsf-termbox-go)
3183 ("go-github.com-smartystreets-goconvey" ,go-github.com-smartystreets-goconvey)))
3184 (home-page "https://github.com/mongodb/mongo-tools")
3185 (synopsis "Various tools for interacting with MongoDB and BSON")
3186 (description
3187 "This package includes a collection of tools related to MongoDB.
3188 @table @code
3189 @item bsondump
3190 Display BSON files in a human-readable format
3191 @item mongoimport
3192 Convert data from JSON, TSV or CSV and insert them into a collection
3193 @item mongoexport
3194 Write an existing collection to CSV or JSON format
3195 @item mongodump/mongorestore
3196 Dump MongoDB backups to disk in the BSON format
3197 @item mongorestore
3198 Read MongoDB backups in the BSON format, and restore them to a live database
3199 @item mongostat
3200 Monitor live MongoDB servers, replica sets, or sharded clusters
3201 @item mongofiles
3202 Read, write, delete, or update files in GridFS
3203 @item mongooplog
3204 Replay oplog entries between MongoDB servers
3205 @item mongotop
3206 Monitor read/write activity on a mongo server
3207 @end table")
3208 (license license:asl2.0)))
3209
3210 (define-public apache-arrow
3211 (package
3212 (name "apache-arrow")
3213 (version "0.10.0")
3214 (source
3215 (origin
3216 (method git-fetch)
3217 (uri (git-reference
3218 (url "https://github.com/apache/arrow")
3219 (commit (string-append "apache-arrow-" version))))
3220 (file-name (git-file-name name version))
3221 (sha256
3222 (base32
3223 "04xkp922b8qrrnpvv9ixxnvk7151n1plzx6aqdff6frn9651zvxs"))))
3224 (build-system cmake-build-system)
3225 (arguments
3226 `(#:tests? #f
3227 #:phases
3228 (modify-phases %standard-phases
3229 (add-before 'configure 'enter-source-directory
3230 (lambda _ (chdir "cpp") #t))
3231 (add-after 'unpack 'set-env
3232 (lambda _
3233 (setenv "BOOST_ROOT" (assoc-ref %build-inputs "boost"))
3234 (setenv "BROTLI_HOME" (assoc-ref %build-inputs "brotli"))
3235 (setenv "FLATBUFFERS_HOME" (assoc-ref %build-inputs "flatbuffers"))
3236 (setenv "JEMALLOC_HOME" (assoc-ref %build-inputs "jemalloc"))
3237 (setenv "RAPIDJSON_HOME" (assoc-ref %build-inputs "rapidjson"))
3238 #t)))
3239 #:build-type "Release"
3240 #:configure-flags
3241 (list "-DARROW_PYTHON=ON"
3242
3243 ;; Install to PREFIX/lib (the default is
3244 ;; PREFIX/lib64).
3245 (string-append "-DCMAKE_INSTALL_LIBDIR="
3246 (assoc-ref %outputs "out")
3247 "/lib")
3248
3249 ;; XXX These Guix package offer static
3250 ;; libraries that are not position independent,
3251 ;; and ld fails to link them into the arrow .so
3252 "-DARROW_WITH_SNAPPY=OFF"
3253 "-DARROW_WITH_ZLIB=OFF"
3254 "-DARROW_WITH_ZSTD=OFF"
3255 "-DARROW_WITH_LZ4=OFF"
3256
3257 ;; Building the tests forces on all the
3258 ;; optional features and the use of static
3259 ;; libraries.
3260 "-DARROW_BUILD_TESTS=OFF"
3261 "-DARROW_BUILD_STATIC=OFF")))
3262 (inputs
3263 `(("boost" ,boost)
3264 ("rapidjson" ,rapidjson)
3265 ("brotli" ,google-brotli)
3266 ("flatbuffers" ,flatbuffers)
3267 ("jemalloc" ,jemalloc)
3268 ("python-3" ,python)
3269 ("python-numpy" ,python-numpy)))
3270 (home-page "https://arrow.apache.org/")
3271 (synopsis "Columnar in-memory analytics")
3272 (description "Apache Arrow is a columnar in-memory analytics layer
3273 designed to accelerate big data. It houses a set of canonical in-memory
3274 representations of flat and hierarchical data along with multiple
3275 language-bindings for structure manipulation. It also provides IPC and common
3276 algorithm implementations.")
3277 (license license:asl2.0)))
3278
3279 (define-public python-pyarrow
3280 (package
3281 (name "python-pyarrow")
3282 (version "0.10.0")
3283 (source
3284 (origin
3285 (method git-fetch)
3286 (uri (git-reference
3287 (url "https://github.com/apache/arrow")
3288 (commit (string-append "apache-arrow-" version))))
3289 (file-name (git-file-name name version))
3290 (sha256
3291 (base32
3292 "04xkp922b8qrrnpvv9ixxnvk7151n1plzx6aqdff6frn9651zvxs"))))
3293 (build-system python-build-system)
3294 (arguments
3295 '(#:tests? #f ; XXX There are no tests in the "python" directory
3296 #:phases
3297 (modify-phases %standard-phases
3298 (delete 'build) ; XXX the build is performed again during the install phase
3299 (add-after 'unpack 'enter-source-directory
3300 (lambda _ (chdir "python") #t))
3301 (add-after 'unpack 'set-env
3302 (lambda _
3303 (setenv "ARROW_HOME" (assoc-ref %build-inputs "apache-arrow"))
3304 #t)))))
3305 (propagated-inputs
3306 `(("apache-arrow" ,apache-arrow)
3307 ("python-numpy" ,python-numpy)
3308 ("python-pandas" ,python-pandas)
3309 ("python-six" ,python-six)))
3310 (native-inputs
3311 `(("cmake" ,cmake-minimal)
3312 ("python-cython" ,python-cython)
3313 ("python-pytest" ,python-pytest)
3314 ("python-pytest-runner" ,python-pytest-runner)
3315 ("python-setuptools-scm" ,python-setuptools-scm)))
3316 (home-page "https://arrow.apache.org/docs/python/")
3317 (synopsis "Python bindings for Apache Arrow")
3318 (description "This library provides a Pythonic API wrapper for the reference
3319 Arrow C++ implementation, along with tools for interoperability with pandas,
3320 NumPy, and other traditional Python scientific computing packages.")
3321 (license license:asl2.0)))
3322
3323 (define-public python2-pyarrow
3324 (package-with-python2 python-pyarrow))
3325
3326 (define-public python-crate
3327 (package
3328 (name "python-crate")
3329 (version "0.23.2")
3330 (source (origin
3331 (method url-fetch)
3332 (uri (pypi-uri "crate" version))
3333 (sha256
3334 (base32
3335 "0ngmlvi320c5gsxab0s7qgq0ck4jdlcwvb6lbjhnfprafdp56vvx"))))
3336 (build-system python-build-system)
3337 (propagated-inputs
3338 `(("python-urllib3" ,python-urllib3)))
3339 (home-page "https://github.com/crate/crate-python")
3340 (synopsis "CrateDB Python client")
3341 (description
3342 "This package provides a Python client library for CrateDB.
3343 It implements the Python DB API 2.0 specification and includes support for
3344 SQLAlchemy.")
3345 (license license:asl2.0)))
3346
3347 (define-public libdbi
3348 (package
3349 (name "libdbi")
3350 (version "0.9.0")
3351 (source (origin
3352 (method url-fetch)
3353 (uri (string-append "mirror://sourceforge/libdbi/libdbi/libdbi-"
3354 version "/libdbi-" version ".tar.gz"))
3355 (sha256
3356 (base32
3357 "00s5ra7hdlq25iv23nwf4h1v3kmbiyzx0v9bhggjiii4lpf6ryys"))))
3358 (build-system gnu-build-system)
3359 (synopsis "Database independent abstraction layer in C")
3360 (description
3361 "This library implements a database independent abstraction layer in C,
3362 similar to the DBI/DBD layer in Perl. Writing one generic set of code,
3363 programmers can leverage the power of multiple databases and multiple
3364 simultaneous database connections by using this framework.")
3365 (home-page "http://libdbi.sourceforge.net/")
3366 (license license:lgpl2.1+)))
3367
3368 (define-public libdbi-drivers
3369 (package
3370 (name "libdbi-drivers")
3371 (version "0.9.0")
3372 (source (origin
3373 (method url-fetch)
3374 (uri (string-append "mirror://sourceforge/libdbi-drivers/"
3375 "libdbi-drivers/libdbi-drivers-" version
3376 "/libdbi-drivers-" version ".tar.gz"))
3377 (sha256
3378 (base32
3379 "0m680h8cc4428xin4p733azysamzgzcmv4psjvraykrsaz6ymlj3"))))
3380 (build-system gnu-build-system)
3381 (native-inputs
3382 `(;; For tests.
3383 ("inetutils" ,inetutils)
3384 ("glibc-locales" ,glibc-locales)
3385 ("mariadb" ,mariadb)))
3386 (inputs
3387 `(("libdbi" ,libdbi)
3388 ("mariadb:dev" ,mariadb "dev")
3389 ("mariadb:lib" ,mariadb "lib")
3390 ("postgresql" ,postgresql)
3391 ("sqlite" ,sqlite)))
3392 (arguments
3393 `(#:configure-flags
3394 (let ((libdbi (assoc-ref %build-inputs "libdbi"))
3395 (mysql:inc (assoc-ref %build-inputs "mariadb:dev"))
3396 (mysql:lib (assoc-ref %build-inputs "mariadb:lib"))
3397 (postgresql (assoc-ref %build-inputs "postgresql"))
3398 (sqlite (assoc-ref %build-inputs "sqlite")))
3399 (list "--disable-docs"
3400 (string-append "--with-dbi-incdir=" libdbi "/include")
3401 (string-append "--with-dbi-libdir=" libdbi "/lib")
3402 "--with-mysql"
3403 (string-append "--with-mysql-incdir=" mysql:inc "/include/mysql")
3404 (string-append "--with-mysql-libdir=" mysql:lib "/lib")
3405 "--with-pgsql"
3406 (string-append "--with-pgsql-incdir=" postgresql "/include")
3407 (string-append "--with-pgsql-libdir=" postgresql "/lib")
3408 "--with-sqlite3"
3409 (string-append "--with-sqlite-incdir=" sqlite "/include")
3410 (string-append "--with-sqlite-libdir=" sqlite "/lib")))
3411 #:phases
3412 (modify-phases %standard-phases
3413 (add-after 'unpack 'fix-tests
3414 (lambda* (#:key inputs #:allow-other-keys)
3415 (substitute* "tests/test_mysql.sh"
3416 (("^MYMYSQLD=.*")
3417 (string-append "MYMYSQLD="
3418 (assoc-ref inputs "mariadb")
3419 "/bin/mysqld")))
3420 #t))
3421 (add-after 'install 'remove-empty-directories
3422 (lambda* (#:key outputs #:allow-other-keys)
3423 (let ((var (string-append (assoc-ref outputs "out") "/var")))
3424 (delete-file-recursively var))
3425 #t)))))
3426 (synopsis "Database drivers for the libdbi framework")
3427 (description
3428 "The @code{libdbi-drivers} library provides the database specific drivers
3429 for the @code{libdbi} framework.
3430
3431 The drivers officially supported by @code{libdbi} are:
3432 @itemize
3433 @item MySQL,
3434 @item PostgreSQL,
3435 @item SQLite.
3436 @end itemize")
3437 (home-page "http://libdbi-drivers.sourceforge.net/")
3438 (license license:lgpl2.1+)))
3439
3440 (define-public soci
3441 (package
3442 (name "soci")
3443 (version "4.0.0")
3444 (source (origin
3445 (method git-fetch)
3446 (uri (git-reference
3447 (url "https://github.com/SOCI/soci/")
3448 (commit version)))
3449 (file-name (git-file-name name version))
3450 (sha256
3451 (base32
3452 "06faswdxd2frqr9xnx6bxc7zwarlzsbdi3bqpz7kwdxsjvq41rnb"))))
3453 (build-system cmake-build-system)
3454 (inputs
3455 `(("postgresql" ,postgresql)
3456 ("sqlite" ,sqlite)
3457 ("odbc" ,unixodbc)
3458 ("boost" ,boost)
3459 ("mysql" ,mysql)))
3460 (arguments
3461 `(#:tests? #f ; Tests may require running database management systems.
3462 #:phases
3463 (modify-phases %standard-phases
3464 (add-after 'unpack 'fix-lib-path
3465 (lambda _
3466 (substitute* "CMakeLists.txt"
3467 (("set\\(SOCI_LIBDIR \"lib64\"\\)") "")))))))
3468 (synopsis "C++ Database Access Library")
3469 (description
3470 "SOCI is an abstraction layer for several database backends, including
3471 PostreSQL, SQLite, ODBC and MySQL.")
3472 (home-page "http://soci.sourceforge.net/")
3473 (license license:boost1.0)))