Merge branch 'staging' into core-updates
[jackhill/guix/guix.git] / gnu / packages / finance.scm
CommitLineData
20c6b9da 1;;; GNU Guix --- Functional package management for GNU
fe7fa353 2;;; Copyright © 2015, 2016 Andreas Enge <andreas@enge.fr>
136ff9a2 3;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
d3699b31 4;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
cb0866c3 5;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
9475fd92 6;;; Copyright © 2017 Carlo Zancanaro <carlo@zancanaro.id.au>
8514662b 7;;; Copyright © 2017 Theodoros Foradis <theodoros@foradis.org>
14e09e90 8;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
9859800f 9;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
5424f9bc 10;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
3da86c52 11;;; Copyright © 2018 Adriano Peluso <catonano@gmail.com>
8f4d15f1 12;;; Copyright © 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
948e888d 13;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
230e5db7 14;;; Copyright © 2019, 2020 Guillaume Le Vaillant <glv@posteo.net>
90bb244f 15;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
01b37d0f 16;;; Copyright © 2019 Martin Becze <mjbecze@riseup.net>
66b707a7 17;;; Copyright © 2019 Sebastian Schott <sschott@mailbox.org>
63ca1a89 18;;; Copyright © 2020 Kei Kebreau <kkebreau@posteo.net>
20c6b9da
AE
19;;;
20;;; This file is part of GNU Guix.
21;;;
22;;; GNU Guix is free software; you can redistribute it and/or modify it
23;;; under the terms of the GNU General Public License as published by
24;;; the Free Software Foundation; either version 3 of the License, or (at
25;;; your option) any later version.
26;;;
27;;; GNU Guix is distributed in the hope that it will be useful, but
28;;; WITHOUT ANY WARRANTY; without even the implied warranty of
29;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30;;; GNU General Public License for more details.
31;;;
32;;; You should have received a copy of the GNU General Public License
33;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
34
35(define-module (gnu packages finance)
fa4f95a7
CB
36 #:use-module ((guix licenses) #:prefix license:)
37 #:use-module (guix packages)
38 #:use-module (guix download)
730553d7 39 #:use-module (guix git-download)
fa4f95a7
CB
40 #:use-module (guix build-system gnu)
41 #:use-module (guix build-system cmake)
42 #:use-module (guix build-system python)
90bb244f 43 #:use-module (guix build-system glib-or-gtk)
01b37d0f 44 #:use-module (guix build-system go)
230e5db7 45 #:use-module (guix build-system qt)
90bb244f 46 #:use-module (guix utils)
5424f9bc 47 #:use-module (gnu packages)
054ff198
GLV
48 #:use-module (gnu packages aidc)
49 #:use-module (gnu packages autotools)
fa4f95a7
CB
50 #:use-module (gnu packages base)
51 #:use-module (gnu packages boost)
52 #:use-module (gnu packages check)
fc54da1d 53 #:use-module (gnu packages compression)
0a551443 54 #:use-module (gnu packages crypto)
952fe2da 55 #:use-module (gnu packages curl)
fa4f95a7 56 #:use-module (gnu packages databases)
63ca1a89 57 #:use-module (gnu packages docbook)
fa4f95a7
CB
58 #:use-module (gnu packages documentation)
59 #:use-module (gnu packages dns)
60 #:use-module (gnu packages emacs)
255d1bbe 61 #:use-module (gnu packages dbm)
63ca1a89 62 #:use-module (gnu packages gettext)
90bb244f
TLC
63 #:use-module (gnu packages gnome)
64 #:use-module (gnu packages glib)
df724c9c 65 #:use-module (gnu packages gnupg)
fa4f95a7
CB
66 #:use-module (gnu packages graphviz)
67 #:use-module (gnu packages groff)
90bb244f 68 #:use-module (gnu packages gtk)
fa4f95a7
CB
69 #:use-module (gnu packages libedit)
70 #:use-module (gnu packages libevent)
71 #:use-module (gnu packages libunwind)
96f5e2e9 72 #:use-module (gnu packages libusb)
fa4f95a7 73 #:use-module (gnu packages linux)
952fe2da 74 #:use-module (gnu packages man)
fa4f95a7 75 #:use-module (gnu packages multiprecision)
0a551443 76 #:use-module (gnu packages networking)
fa4f95a7 77 #:use-module (gnu packages pkg-config)
952fe2da 78 #:use-module (gnu packages popt)
fa4f95a7
CB
79 #:use-module (gnu packages protobuf)
80 #:use-module (gnu packages python)
cc6f4912 81 #:use-module (gnu packages python-crypto)
589e3f4e 82 #:use-module (gnu packages python-web)
44d10b1f 83 #:use-module (gnu packages python-xyz)
fa4f95a7 84 #:use-module (gnu packages qt)
1d0865c1 85 #:use-module (gnu packages readline)
9d0c291e 86 #:use-module (gnu packages sphinx)
fa4f95a7
CB
87 #:use-module (gnu packages texinfo)
88 #:use-module (gnu packages textutils)
1ea8b3b1 89 #:use-module (gnu packages time)
fa4f95a7
CB
90 #:use-module (gnu packages tls)
91 #:use-module (gnu packages upnp)
fc54da1d 92 #:use-module (gnu packages version-control)
fa4f95a7
CB
93 #:use-module (gnu packages web)
94 #:use-module (gnu packages xml)
95 #:use-module (gnu packages gnuzilla))
20c6b9da
AE
96
97(define-public bitcoin-core
98 (package
99 (name "bitcoin-core")
1219a7cc 100 (version "0.18.1")
20c6b9da
AE
101 (source (origin
102 (method url-fetch)
103 (uri
0a59cc6e 104 (string-append "https://bitcoincore.org/bin/bitcoin-core-"
14ea30e4 105 version "/bitcoin-" version ".tar.gz"))
20c6b9da
AE
106 (sha256
107 (base32
1219a7cc 108 "15mz0gmm058gmq2gdpffbw25jpv7mksyhyfws6i7mqvrapqr6zaw"))))
20c6b9da
AE
109 (build-system gnu-build-system)
110 (native-inputs
111 `(("pkg-config" ,pkg-config)
1219a7cc
TGR
112 ("python" ,python) ; for the tests
113 ("util-linux" ,util-linux) ; provides the hexdump command for tests
0193812a 114 ("qttools" ,qttools)))
20c6b9da 115 (inputs
1219a7cc 116 `(("bdb" ,bdb-4.8) ; 4.8 required for compatibility
20c6b9da 117 ("boost" ,boost)
14ea30e4 118 ("libevent" ,libevent)
20c6b9da
AE
119 ("miniupnpc" ,miniupnpc)
120 ("openssl" ,openssl)
121 ("protobuf" ,protobuf)
0193812a 122 ("qtbase" ,qtbase)))
20c6b9da
AE
123 (arguments
124 `(#:configure-flags
125 (list
20c6b9da
AE
126 ;; Boost is not found unless specified manually.
127 (string-append "--with-boost="
0193812a
MB
128 (assoc-ref %build-inputs "boost"))
129 ;; XXX: The configure script looks up Qt paths by
130 ;; `pkg-config --variable=host_bins Qt5Core`, which fails to pick
131 ;; up executables residing in 'qttools', so we specify them here.
132 (string-append "ac_cv_path_LRELEASE="
133 (assoc-ref %build-inputs "qttools")
134 "/bin/lrelease")
135 (string-append "ac_cv_path_LUPDATE="
136 (assoc-ref %build-inputs "qttools")
137 "/bin/lupdate"))
20c6b9da
AE
138 #:phases
139 (modify-phases %standard-phases
99629e5a
CD
140 (add-before 'configure 'make-qt-deterministic
141 (lambda _
142 ;; Make Qt deterministic.
143 (setenv "QT_RCC_SOURCE_DATE_OVERRIDE" "1")
144 #t))
20c6b9da
AE
145 (add-before 'check 'set-home
146 (lambda _
1219a7cc 147 (setenv "HOME" (getenv "TMPDIR")) ; tests write to $HOME
bcfc54ff
CD
148 #t))
149 (add-after 'check 'check-functional
150 (lambda _
151 (invoke "python3" "./test/functional/test_runner.py"
152 (string-append "--jobs=" (number->string (parallel-job-count))))
0e9600cb 153 #t)))))
20c6b9da
AE
154 (home-page "https://bitcoin.org/en/")
155 (synopsis "Bitcoin peer-to-peer client")
156 (description
157 "Bitcoin is a digital currency that enables instant payments to anyone
158anywhere in the world. It uses peer-to-peer technology to operate without
159central authority: managing transactions and issuing money are carried out
160collectively by the network. Bitcoin Core is the reference implementation
161of the bitcoin protocol. This package provides the Bitcoin Core command
162line client and a client based on Qt.")
163 (license license:expat)))
d3699b31 164
66b707a7
SS
165(define-public homebank
166 (package
167 (name "homebank")
168 (version "5.2.8")
169 (source (origin
170 (method url-fetch)
171 (uri (string-append "http://homebank.free.fr/public/homebank-"
172 version ".tar.gz"))
173 (sha256
174 (base32
175 "13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y"))))
176 (build-system glib-or-gtk-build-system)
177 (native-inputs
178 `(("pkg-config" ,pkg-config)
179 ("intltool" ,intltool)))
180 (inputs
181 `(("gtk+" ,gtk+)
182 ("libsoup" ,libsoup)))
183 (arguments
184 `(#:configure-flags (list "-without-ofx"))) ; libofx is not available yet
185 (home-page "http://homebank.free.fr/")
186 (synopsis "Graphical personal accounting application")
187 (description "HomeBank allows you to manage your personal accounts at
188home. The seeks to be lightweight, simple and easy to use. It brings
189features that allow you to analyze your finances in a detailed way instantly
190and dynamically with report tools based on filtering and graphical charts.")
191 (license license:gpl2+)))
192
d3699b31
AG
193(define-public ledger
194 (package
195 (name "ledger")
9859800f 196 (version "3.1.3")
8b7ac58c
TGR
197 (source
198 (origin
199 (method git-fetch)
200 (uri (git-reference
201 (url "https://github.com/ledger/ledger.git")
202 (commit (string-append "v" version))))
203 (file-name (git-file-name name version))
204 (sha256
9859800f 205 (base32 "0bfnrqrd6wqgsngfpqi30xh6yy86pwl25iwzrqy44q31r0zl4mm3"))))
d3699b31
AG
206 (build-system cmake-build-system)
207 (arguments
f90ed028 208 `(#:configure-flags
d3699b31
AG
209 `("-DBUILD_DOCS:BOOL=ON"
210 "-DBUILD_WEB_DOCS:BOOL=ON"
d3699b31 211 "-DUSE_PYTHON:BOOL=ON"
f90ed028 212 "-DCMAKE_INSTALL_LIBDIR:PATH=lib")
d3699b31
AG
213 #:phases
214 (modify-phases %standard-phases
215 (add-before 'configure 'install-examples
216 (lambda* (#:key outputs #:allow-other-keys)
217 (let ((examples (string-append (assoc-ref outputs "out")
218 "/share/doc/ledger/examples")))
219 (install-file "test/input/sample.dat" examples)
220 (install-file "test/input/demo.ledger" examples))
221 #t))
222 (add-after 'build 'build-doc
1f3c4ba8 223 (lambda _ (invoke "make" "doc")))
d3699b31
AG
224 (add-before 'check 'check-setup
225 ;; One test fails if it can't set the timezone.
226 (lambda* (#:key inputs #:allow-other-keys)
227 (setenv "TZDIR"
228 (string-append (assoc-ref inputs "tzdata")
229 "/share/zoneinfo"))
f90ed028
RW
230 ;; Skip failing test BaselineTest_cmd-org.
231 ;; This is a known upstream issue. See
232 ;; https://github.com/ledger/ledger/issues/550
233 (setenv "ARGS" "-E BaselineTest_cmd-org")
234 #t)))))
d3699b31
AG
235 (inputs
236 `(("boost" ,boost)
237 ("gmp" ,gmp)
238 ("libedit" ,libedit)
239 ("mpfr" ,mpfr)
240 ("python" ,python-2)
241 ("tzdata" ,tzdata)
242 ("utfcpp" ,utfcpp)))
243 (native-inputs
f90ed028 244 `(("groff" ,groff)
d3699b31 245 ("texinfo" ,texinfo)))
b53a0c88 246 (home-page "https://ledger-cli.org/")
d3699b31
AG
247 (synopsis "Command-line double-entry accounting program")
248 (description
249 "Ledger is a powerful, double-entry accounting system that is
250accessed from the UNIX command-line. This may put off some users, since
251there is no flashy UI, but for those who want unparalleled reporting
252access to their data there are few alternatives.
253
254Ledger uses text files for input. It reads the files and generates
255reports; there is no other database or stored state. To use Ledger,
256you create a file of your account names and transactions, run from the
257command line with some options to specify input and requested reports, and
258get output. The output is generally plain text, though you could generate
259a graph or html instead. Ledger is simple in concept, surprisingly rich
260in ability, and easy to use.")
261 ;; There are some extra licenses in files which do not presently get
262 ;; installed when you build this package. Different versions of the GPL
263 ;; are used in the contrib and python subdirectories. The bundled version
264 ;; of utfcpp is under the Boost 1.0 license. Also the file
265 ;; `tools/update_copyright_year` has an Expat license.
266 (license (list license:bsd-3
267 license:asl2.0 ; src/strptime.cc
268 (license:non-copyleft
269 "file://src/wcwidth.cc"
f90ed028 270 "See src/wcwidth.cc in the distribution.")))))
cb0866c3 271
0df201c0
RW
272(define-public emacs-ledger-mode
273 ;; There have been no new releases since 2016.
274 (let ((commit "253a20dc62e137ed0ed8e1dd8614ecba116610ea")
275 (revision "1"))
276 (package
277 (name "emacs-ledger-mode")
278 (version (git-version "3.1.1" revision commit))
279 (source
280 (origin
281 (method git-fetch)
282 (uri (git-reference
283 (url "https://github.com/ledger/ledger-mode.git")
284 (commit commit)))
285 (file-name (git-file-name name version))
286 (sha256
287 (base32 "06wrgkqpgvk17vibrk2qikdlqn8y63jg86marp1wgmram92mb3jk"))))
288 (build-system cmake-build-system)
289 (arguments
290 `(#:modules ((guix build cmake-build-system)
291 (guix build utils)
292 (guix build emacs-utils))
293 #:imported-modules (,@%cmake-build-system-modules
294 (guix build emacs-utils))
295 #:tests? #f ; there are none
296 #:phases
297 (modify-phases %standard-phases
2c50e52a
BG
298 (add-after 'unpack 'patch-site-dir
299 (lambda _
300 (substitute* "CMakeLists.txt"
301 (("DESTINATION share/emacs/site-lisp/ledger-mode")
302 "DESTINATION share/emacs/site-lisp"))
303 #t))
1c0dd730
PN
304 (add-before 'build 'patch-path
305 (lambda* (#:key inputs #:allow-other-keys)
306 (let ((ledger (assoc-ref inputs "ledger")))
307 (make-file-writable "ledger-exec.el")
308 (emacs-substitute-variables "ledger-exec.el"
309 ("ledger-binary-path" (string-append ledger "/bin/ledger"))))
310 #t))
0df201c0
RW
311 (add-after 'build 'build-doc
312 (lambda* (#:key outputs #:allow-other-keys)
313 (let ((target (string-append (assoc-ref outputs "out")
314 "/share/info")))
315 (mkdir-p target)
316 (invoke "makeinfo" "-o" target
317 "../source/doc/ledger-mode.texi"))
318 #t))
2c50e52a 319 (add-after 'install 'generate-autoload
0df201c0
RW
320 (lambda* (#:key outputs #:allow-other-keys)
321 (let* ((site-dir (string-append (assoc-ref outputs "out")
2c50e52a
BG
322 "/share/emacs/site-lisp")))
323 (emacs-generate-autoloads ,name site-dir))
324 #t)))))
1c0dd730
PN
325 (inputs
326 `(("ledger" ,ledger)))
0df201c0
RW
327 (native-inputs
328 `(("emacs-minimal" ,emacs-minimal)
329 ("texinfo" ,texinfo)))
330 (home-page "https://ledger-cli.org/")
331 (synopsis "Command-line double-entry accounting program")
332 (description
333 "Ledger is a powerful, double-entry accounting system that is
334accessed from the UNIX command-line. This may put off some users, since
335there is no flashy UI, but for those who want unparalleled reporting
336access to their data there are few alternatives.
337
338Ledger uses text files for input. It reads the files and generates
339reports; there is no other database or stored state. To use Ledger,
340you create a file of your account names and transactions, run from the
341command line with some options to specify input and requested reports, and
342get output. The output is generally plain text, though you could generate
343a graph or html instead. Ledger is simple in concept, surprisingly rich
344in ability, and easy to use.
345
346This package provides the Emacs mode.")
347 (license license:gpl2+))))
348
cb0866c3
HG
349(define-public geierlein
350 (package
351 (name "geierlein")
1c21e734 352 (version "0.9.13")
cb0866c3
HG
353 (source
354 (origin
1fd71120
TGR
355 (method git-fetch)
356 (uri (git-reference
357 (url "https://github.com/stesie/geierlein.git")
358 (commit (string-append "V" version))))
359 (file-name (git-file-name name version))
cb0866c3 360 (sha256
1fd71120 361 (base32 "00zpwr3lk2vdmd60fgdwdk0xxs52wvnm19ln2m75yfphydvkglic"))))
cb0866c3
HG
362 (build-system gnu-build-system)
363 (arguments
1fd71120 364 `(#:tests? #f ; would require npm, python and a lot more
cb0866c3
HG
365 #:phases
366 (modify-phases %standard-phases
1c21e734 367 (delete 'configure) ; no configure script
cb0866c3
HG
368 (add-after 'unpack 'override-target-directory-and-tool-paths
369 (lambda* (#:key inputs outputs #:allow-other-keys)
370 (substitute* "Makefile"
371 (("prefix := .*")
372 (string-append "prefix := " (assoc-ref outputs "out") "\n"))
373 ;; Required for tests, unused for now:
374 ;;(("PYTHON := .*")
375 ;; (string-append (which "python") "\n")))
376 (("INSTALL := .*")
377 (string-append "INSTALL := " (which "install") "\n")))
378 (substitute* "bin/xgeierlein.in"
379 ;; Use icecat as XULRUNNER
380 (("^for search ")
381 (string-append "XULRUNNER=" (which "icecat") "\n"
382 "for search ")))
383 #t)))))
384 (inputs
385 `(("icecat" ,icecat)))
1e41bb1b 386 (home-page "https://stesie.github.io/geierlein/")
cb0866c3
HG
387 (synopsis "Free Elster client, for sending Germany VAT declarations")
388 (description
389 "Geierlein is a free Elster client, i.e. an application that
390allows to send VAT declarations to Germany's fiscal authorities.
391
392Currently it is *not* possible to send returns that are due annually
393(especially the income tax return) since the fiscal authority doesn't
394allow to do that off the ERiC library (which is proprietary however).
395It's not clear at the moment whether one day it will be possible to
396do so.")
397 (license license:agpl3+)))
9475fd92
CZ
398
399(define-public electrum
400 (package
401 (name "electrum")
fae0a777 402 (version "3.3.8")
9475fd92
CZ
403 (source
404 (origin
405 (method url-fetch)
406 (uri (string-append "https://download.electrum.org/"
407 version "/Electrum-"
408 version ".tar.gz"))
409 (sha256
fae0a777 410 (base32 "1g00cj1pmckd4xis8r032wmraiv3vd3zc803hnyxa2bnhj8z3bg2"))
9475fd92
CZ
411 (modules '((guix build utils)))
412 (snippet
413 '(begin
414 ;; Delete the bundled dependencies.
415 (delete-file-recursively "packages")
416 #t))))
417 (build-system python-build-system)
418 (inputs
47bd32d9
CZ
419 `(("python-pyaes" ,python-pyaes)
420 ("python-pysocks" ,python-pysocks)
421 ("python-sip" ,python-sip)
422 ("python-pyqt" ,python-pyqt)
423 ("python-ecdsa" ,python-ecdsa)
424 ("python-pbkdf2" ,python-pbkdf2)
425 ("python-requests" ,python-requests)
426 ("python-qrcode" ,python-qrcode)
427 ("python-protobuf" ,python-protobuf)
81d59f44
VC
428 ("python-aiohttp" ,python-aiohttp)
429 ("python-aiohttp-socks" ,python-aiohttp-socks)
430 ("python-aiorpcx" ,python-aiorpcx)
431 ("python-certifi" ,python-certifi)
47bd32d9
CZ
432 ("python-dnspython" ,python-dnspython)
433 ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix)))
9475fd92 434 (arguments
47bd32d9 435 `(#:tests? #f ;; package doesn't have any tests
9475fd92
CZ
436 #:phases
437 (modify-phases %standard-phases
438 (add-before 'build 'patch-home
439 (lambda* (#:key outputs #:allow-other-keys)
440 (substitute* "setup.py"
441 (("~/.local/share")
442 (string-append (assoc-ref outputs "out") "/local/share"))))))))
443 (home-page "https://electrum.org/")
444 (synopsis "Bitcoin wallet")
445 (description
446 "Electrum is a lightweight Bitcoin client, based on a client-server
447protocol. It supports Simple Payment Verification (SPV) and deterministic key
448generation from a seed. Your secret keys are encrypted and are never sent to
449other machines/servers. Electrum does not download the Bitcoin blockchain.")
450 (license license:expat)))
8514662b 451
a0bb0217
VC
452(define-public electron-cash
453 (package
454 (inherit electrum)
455 (name "electron-cash")
d08c3e51 456 (version "4.0.12")
a0bb0217
VC
457 (source
458 (origin
d08c3e51
VC
459 (method git-fetch)
460 (uri (git-reference
461 (url "https://github.com/Electron-Cash/Electron-Cash.git")
462 (commit version)))
463 (file-name (git-file-name name version))
a0bb0217
VC
464 (sha256
465 (base32
d08c3e51 466 "0gidrx8499v7rig7ljhd70wssshs1qm0gp1553g70i323hcbf62x"))))
1ea8b3b1
VC
467 (inputs
468 `(,@(package-inputs electrum)
d08c3e51 469 ("libsecp256k1", libsecp256k1)
1ea8b3b1
VC
470 ("python-dateutil", python-dateutil)
471 ("python-dnspython", python-dnspython)))
d08c3e51 472 (arguments
e5c32a3a
VC
473 (substitute-keyword-arguments (package-arguments electrum)
474 ((#:phases phases)
475 `(modify-phases ,phases
476 (add-after 'unpack 'use-libsecp256k1-input
477 (lambda* (#:key inputs #:allow-other-keys)
478 (substitute* "lib/secp256k1.py"
479 (("library_paths = .* 'libsecp256k1.so.0'.")
480 (string-append "library_paths = ('" (assoc-ref inputs "libsecp256k1") "/lib/libsecp256k1.so.0'")))))))))
a0bb0217
VC
481 (home-page "https://electroncash.org/")
482 (synopsis "Bitcoin Cash wallet")
483 (description
484 "Electroncash is a lightweight Bitcoin Cash client, based on a client-server
485protocol. It supports Simple Payment Verification (SPV) and deterministic key
486generation from a seed. Your secret keys are encrypted and are never sent to
487other machines/servers. Electroncash does not download the Bitcoin Cash blockchain.")
488 (license license:expat)))
489
8514662b
TF
490(define-public monero
491 ;; This package bundles easylogging++ and lmdb.
fc54da1d
GLV
492 ;; The bundled easylogging++ is modified, and the changes will not be
493 ;; upstreamed.
8514662b
TF
494 ;; The devs deem the lmdb driver too critical a consenus component, to use
495 ;; the system's dynamically linked library.
496 (package
497 (name "monero")
182173b1 498 (version "0.15.0.1")
8514662b
TF
499 (source
500 (origin
0a551443
TF
501 (method git-fetch)
502 (uri (git-reference
fc54da1d
GLV
503 (url "https://github.com/monero-project/monero.git")
504 (commit (string-append "v" version))
505 (recursive? #t)))
136ff9a2 506 (file-name (git-file-name name version))
0a551443 507 (patches (search-patches "monero-use-system-miniupnpc.patch"))
fc54da1d
GLV
508 (modules '((guix build utils)))
509 (snippet
510 '(begin
511 ;; Delete bundled dependencies.
512 (for-each
513 delete-file-recursively
514 '("external/miniupnp" "external/rapidjson"
515 "external/unbound"))
516 #t))
8514662b
TF
517 (sha256
518 (base32
182173b1 519 "0sypa235lf2bbib4b71xpaw39h9304slgsvnsz8wmy9fq1zx009m"))))
8514662b
TF
520 (build-system cmake-build-system)
521 (native-inputs
522 `(("doxygen" ,doxygen)
fc54da1d 523 ("git" ,git)
8514662b 524 ("graphviz" ,graphviz)
fc54da1d 525 ("pkg-config" ,pkg-config)
b7a07bbd
GLV
526 ("protobuf" ,protobuf)
527 ("python" ,python)
fc54da1d 528 ("qttools" ,qttools)))
8514662b 529 (inputs
fc54da1d 530 `(("boost" ,boost)
0a551443 531 ("cppzmq" ,cppzmq)
8514662b 532 ("expat" ,expat)
fc54da1d 533 ("hidapi" ,hidapi)
fc54da1d 534 ("libsodium" ,libsodium)
b7a07bbd
GLV
535 ("libunwind" ,libunwind)
536 ("libusb" ,libusb)
fc54da1d 537 ("miniupnpc" ,miniupnpc)
8514662b 538 ("openssl" ,openssl)
b7a07bbd 539 ("protobuf" ,protobuf)
8514662b 540 ("rapidjson" ,rapidjson)
fc54da1d
GLV
541 ("readline" ,readline)
542 ("unbound" ,unbound)
543 ("xz" ,xz)
544 ("zeromq" ,zeromq)))
8514662b
TF
545 (arguments
546 `(#:out-of-source? #t
44554d86
GLV
547 #:configure-flags
548 (list "-DARCH=default"
549 "-DBUILD_TESTS=ON"
550 "-DBUILD_GUI_DEPS=ON"
551 (string-append "-DReadline_ROOT_DIR="
552 (assoc-ref %build-inputs "readline")))
8514662b
TF
553 #:phases
554 (modify-phases %standard-phases
555 ;; tests/core_tests need a valid HOME
556 (add-before 'configure 'set-home
557 (lambda _
558 (setenv "HOME" (getcwd))
559 #t))
fc54da1d 560 (add-after 'set-home 'change-log-path
8514662b
TF
561 (lambda _
562 (substitute* "contrib/epee/src/mlog.cpp"
563 (("epee::string_tools::get_current_module_folder\\(\\)")
fc54da1d
GLV
564 "\".bitmonero\"")
565 (("return \\(")
566 "return ((std::string(getenv(\"HOME\"))) / "))
8514662b 567 #t))
f8f2a944
GLV
568 (add-after 'change-log-path 'fix-file-permissions-for-tests
569 (lambda _
570 (for-each make-file-writable
571 (find-files "tests/data/" "wallet_9svHk1.*"))
572 #t))
fc54da1d 573 ;; Only try tests that don't need access to network or system
8514662b
TF
574 (replace 'check
575 (lambda _
cb45aad9 576 (invoke "make" "ARGS=-R 'hash|core_tests' --verbose" "test")))
8514662b
TF
577 (add-after 'check 'unit-tests
578 (lambda _
579 (let ((excluded-unit-tests
580 (string-join
581 '("AddressFromURL.Success"
582 "AddressFromURL.Failure"
583 "DNSResolver.IPv4Success"
584 "DNSResolver.DNSSECSuccess"
585 "DNSResolver.DNSSECFailure"
fc54da1d 586 "DNSResolver.GetTXTRecord"
fc54da1d 587 "is_hdd.linux_os_root")
8514662b 588 ":")))
797445be
TF
589 (invoke "tests/unit_tests/unit_tests"
590 (string-append "--gtest_filter=-"
b7a07bbd 591 excluded-unit-tests)))))
df90b6e7
GLV
592 (add-after 'install 'install-librandomx
593 (lambda* (#:key outputs #:allow-other-keys)
594 (let ((lib (string-append (assoc-ref outputs "out") "/lib")))
595 (install-file "external/randomx/librandomx.a" lib)
596 #t)))
b7a07bbd
GLV
597 (add-after 'install 'delete-dead-links
598 (lambda* (#:key outputs #:allow-other-keys)
599 (let ((out (assoc-ref outputs "out")))
600 (delete-file (string-append out "/lib/libprotobuf.so"))
601 (delete-file (string-append out "/lib/libusb-1.0.so"))
602 #t))))))
df90b6e7 603 (home-page "https://web.getmonero.org/")
8514662b
TF
604 (synopsis "Command-line interface to the Monero currency")
605 (description
fc54da1d
GLV
606 "Monero is a secure, private, untraceable currency. This package provides
607the Monero command line client and daemon.")
8514662b 608 (license license:bsd-3)))
79228a52 609
f7e24839 610(define-public monero-gui
79228a52 611 (package
f7e24839 612 (name "monero-gui")
230e5db7 613 (version "0.15.0.3")
79228a52
TF
614 (source
615 (origin
3902bc5c
TF
616 (method git-fetch)
617 (uri (git-reference
1362e529 618 (url "https://github.com/monero-project/monero-gui.git")
3902bc5c 619 (commit (string-append "v" version))))
398a96a2 620 (file-name (git-file-name name version))
79228a52
TF
621 (sha256
622 (base32
230e5db7
GLV
623 "1v2mk6qp7dfdj4j4cilxp0s0phfwwnmjvpvjrz6jzzlpvbnavkr0"))))
624 (build-system qt-build-system)
79228a52 625 (native-inputs
1362e529 626 `(("pkg-config" ,pkg-config)
6915d20f 627 ("qttools" ,qttools)))
79228a52
TF
628 (inputs
629 `(("boost" ,boost)
1362e529 630 ("hidapi" ,hidapi)
1362e529 631 ("libsodium" ,libsodium)
b7a07bbd
GLV
632 ("libunwind" ,libunwind)
633 ("libusb" ,libusb)
79228a52 634 ("openssl" ,openssl)
b7a07bbd 635 ("protobuf" ,protobuf)
6915d20f
EF
636 ("qtbase" ,qtbase)
637 ("qtdeclarative" ,qtdeclarative)
638 ("qtgraphicaleffects" ,qtgraphicaleffects)
1362e529
GLV
639 ("qtlocation" ,qtlocation)
640 ("qtmultimedia" ,qtmultimedia)
6915d20f 641 ("qtquickcontrols" ,qtquickcontrols)
1362e529
GLV
642 ("qtquickcontrols2",qtquickcontrols2)
643 ("qtsvg" ,qtsvg)
1362e529 644 ("qtxmlpatterns" ,qtxmlpatterns)
79228a52
TF
645 ("unbound" ,unbound)))
646 (propagated-inputs
647 `(("monero" ,monero)))
648 (arguments
230e5db7 649 `(#:tests? #f ; No tests
1362e529 650 #:phases
79228a52 651 (modify-phases %standard-phases
230e5db7 652 (add-after 'unpack 'fix-makefile-vars
79228a52
TF
653 (lambda _
654 (substitute* "src/zxcvbn-c/makefile"
655 (("\\?=") "="))
656 #t))
230e5db7
GLV
657 (add-after 'fix-makefile-vars 'fix-paths
658 (lambda* (#:key inputs outputs #:allow-other-keys)
659 (let ((boost (assoc-ref inputs "boost"))
660 (monero (assoc-ref inputs "monero"))
661 (openssl (assoc-ref inputs "openssl"))
662 (qttools (assoc-ref inputs "qttools"))
663 (out (assoc-ref outputs "out")))
664 (substitute* "monero-wallet-gui.pro"
665 (("-L/usr/local/lib")
666 "")
667 (("-L/usr/local/opt/openssl/lib")
668 (string-append "-L" openssl "/lib"))
669 (("-L/usr/local/opt/boost/lib")
670 (string-append "-L" boost "/lib"))
671 (("\\$\\$\\[QT_INSTALL_BINS\\]/lrelease")
672 (string-append qttools "/bin/lrelease"))
673 (("\\$\\$\\[QT_INSTALL_BINS\\]/lupdate")
674 (string-append qttools "/bin/lupdate")))
675 (substitute* "deployment.pri"
676 (("/opt/\\$\\$\\{TARGET\\}/bin")
677 (string-append out "/bin")))
678 (substitute* "src/daemon/DaemonManager.cpp"
679 (("QApplication::applicationDirPath\\(\\) \\+ \"/monerod")
680 (string-append "\"" monero "/bin/monerod")))
681 #t)))
682 (add-after 'fix-paths 'make-qt-deterministic
1362e529
GLV
683 (lambda _
684 (setenv "QT_RCC_SOURCE_DATE_OVERRIDE" "1")
685 #t))
686 (add-after 'make-qt-deterministic 'fix-version
687 (lambda _
688 (substitute* "build.sh"
689 (("echo .*> version.js")
690 ""))
691 (with-output-to-file "version.js"
692 (lambda _
693 (format #t
694 "var GUI_VERSION = \"~a\"~@
695 var GUI_MONERO_VERSION = \"~a\"~%"
696 ,version
697 ,(package-version monero))))
698 #t))
230e5db7 699 (replace 'configure
79228a52 700 (lambda _
230e5db7 701 (mkdir-p "build")
1362e529 702 (chdir "build")
230e5db7
GLV
703 (invoke "qmake" "../monero-wallet-gui.pro" "CONFIG+=release")))
704 (add-before 'build 'build-zxcvbn-c
705 (lambda _
706 (invoke "make" "-C" "../src/zxcvbn-c"))))))
61fe56fc 707 (home-page "https://web.getmonero.org/")
79228a52
TF
708 (synopsis "Graphical user interface for the Monero currency")
709 (description
1362e529
GLV
710 "Monero is a secure, private, untraceable currency. This package provides
711the Monero GUI client.")
79228a52 712 (license license:bsd-3)))
00d3f022 713
f7e24839
TF
714(define-public monero-core
715 (deprecated-package "monero-core" monero-gui))
716
00d3f022
DM
717(define-public python-trezor-agent
718 (package
719 (name "python-trezor-agent")
37cff994 720 (version "0.13.1")
00d3f022
DM
721 (source
722 (origin
39a7b720
TGR
723 (method git-fetch)
724 (uri (git-reference
725 (url "https://github.com/romanz/trezor-agent.git")
726 (commit (string-append "v" version))))
727 (file-name (git-file-name name version))
00d3f022 728 (sha256
37cff994 729 (base32 "0q99vbfd3h85s8rnjipnmldixabqmmlk5w9karv6f0rhyi54f4zv"))))
00d3f022
DM
730 (build-system python-build-system)
731 (arguments
732 `(#:phases
733 (modify-phases %standard-phases
df724c9c
VC
734 (add-after 'unpack 'remove-requires-backports-shutil-which
735 ;; Remove requires on backport of shutil_which, as python 3.4+ has
736 ;; a built-in implementation supported in python-trezor-agent.
737 (lambda _
738 (substitute* "setup.py"
739 (("'backports.shutil_which>=3.5.1',") ""))
740 #t))
00d3f022
DM
741 (delete 'check)
742 (add-after 'install 'check
743 (lambda* (#:key outputs inputs #:allow-other-keys)
39a7b720 744 ;; Make installed package available for running the tests.
00d3f022
DM
745 (add-installed-pythonpath inputs outputs)
746 (invoke "py.test"))))))
747 (propagated-inputs
df724c9c
VC
748 `(("python-configargparse" ,python-configargparse)
749 ("python-daemon" ,python-daemon)
750 ("python-docutils" ,python-docutils)
751 ("python-ecdsa" ,python-ecdsa)
00d3f022 752 ("python-ed25519" ,python-ed25519)
df724c9c
VC
753 ("python-mnemonic" ,python-mnemonic)
754 ("python-pymsgbox" ,python-pymsgbox)
00d3f022 755 ("python-semver" ,python-semver)
df724c9c
VC
756 ("python-unidecode" ,python-unidecode)
757 ("python-wheel" ,python-wheel)))
00d3f022 758 (native-inputs
df724c9c
VC
759 `(("gnupg" ,gnupg)
760 ("python-mock" ,python-mock)
00d3f022
DM
761 ("python-pytest" ,python-pytest)))
762 (home-page "https://github.com/romanz/trezor-agent")
df724c9c 763 (synopsis "Use hardware wallets as SSH and GPG agent")
00d3f022
DM
764 (description
765 "@code{libagent} is a library that allows using TREZOR, Keepkey and
766Ledger Nano as a hardware SSH/GPG agent.")
767 (license license:lgpl3)))
768
6e9749ef
DM
769(define-public python-mnemonic
770 (package
771 (name "python-mnemonic")
011ec062 772 (version "0.19")
6e9749ef
DM
773 (source
774 (origin
775 (method url-fetch)
776 (uri (pypi-uri "mnemonic" version))
777 (sha256
011ec062 778 (base32 "0cd9prmdj8wzdmc7lxbf9lz0xrlkvak5ignag406mmfbn81fndsf"))))
6e9749ef
DM
779 (build-system python-build-system)
780 (propagated-inputs
781 `(("python-pbkdf2" ,python-pbkdf2)))
782 (home-page "https://github.com/trezor/python-mnemonic")
783 (synopsis "Implementation of Bitcoin BIP-0039")
784 (description "@code{mnemonic} is a library that provides an implementation
785of Bitcoin BIP-0039.")
786 (license license:expat)))
787
788(define-public python2-mnemonic
789 (package-with-python2 python-mnemonic))
96f5e2e9
DM
790
791(define-public python-ledgerblue
792 (package
793 (name "python-ledgerblue")
794 (version "0.1.16")
795 (source
796 (origin
797 (method url-fetch)
798 (uri (pypi-uri "ledgerblue" version))
799 (sha256
800 (base32
801 "010mghaqh1cmz3a0ifc3f40mmyplilwlw7kpha2mzyrrff46p9gb"))))
802 (build-system python-build-system)
803 (propagated-inputs
804 `(("python-ecpy" ,python-ecpy)
805 ("python-future" ,python-future)
806 ("python-hidapi" ,python-hidapi)
807 ("python-pillow" ,python-pillow)
808 ("python-protobuf" ,python-protobuf)
809 ("python-pycrypto" ,python-pycrypto)))
810 (home-page "https://github.com/LedgerHQ/blue-loader-python")
811 (synopsis "Python library to communicate with Ledger Blue/Nano S")
812 (description "@code{ledgerblue} is a Python library to communicate with
813Ledger Blue/Nano S.")
814 (license license:asl2.0)))
815
816(define-public python2-ledgerblue
817 (package-with-python2 python-ledgerblue))
818
1dca32e3
DM
819(define-public python-trezor
820 (package
821 (name "python-trezor")
61497aa4 822 (version "0.11.3")
1dca32e3
DM
823 (source
824 (origin
825 (method url-fetch)
826 (uri (pypi-uri "trezor" version))
827 (sha256
828 (base32
61497aa4 829 "0211m027vlvyqy83kwbjjjxalb04xgf1klv0h0y0f0yhj07516n7"))))
1dca32e3 830 (build-system python-build-system)
b4c698c8
VC
831 (arguments
832 `(#:phases
833 (modify-phases %standard-phases
834 ;; Default tests run device-specific tests which fail, only run specific tests.
835 (replace 'check
836 (lambda* (#:key inputs outputs #:allow-other-keys)
8c16b8a4
VC
837 ;; Delete tests that require network access.
838 (delete-file "trezorlib/tests/unit_tests/test_tx_api.py")
839 (invoke "python" "-m" "pytest" "--pyarg" "trezorlib.tests.unit_tests"))))))
1dca32e3 840 (propagated-inputs
b4c698c8 841 `(("python-click" ,python-click)
8c16b8a4 842 ("python-construct" ,python-construct)
b4c698c8 843 ("python-ecdsa" ,python-ecdsa)
b4c698c8 844 ("python-libusb1" ,python-libusb1)
1dca32e3 845 ("python-mnemonic" ,python-mnemonic)
b4c698c8
VC
846 ("python-pyblake2" ,python-pyblake2)
847 ("python-requests" ,python-requests)
8c16b8a4 848 ("python-typing-extensions" ,python-typing-extensions)))
1dca32e3 849 (native-inputs
61497aa4
TGR
850 ;; For tests.
851 `(("protobuf" ,protobuf)
852 ("python-black" ,python-black)
853 ("python-protobuf" ,python-protobuf)
854 ("python-isort" ,python-isort)
855 ("python-pyqt" ,python-pyqt)
856 ("python-pytest" ,python-pytest)))
1dca32e3
DM
857 (home-page "https://github.com/trezor/python-trezor")
858 (synopsis "Python library for communicating with TREZOR Hardware Wallet")
859 (description "@code{trezor} is a Python library for communicating with
860TREZOR Hardware Wallet.")
861 (license license:lgpl3)))
862
d6ddeffc
DM
863(define-public python-keepkey
864 (package
865 (name "python-keepkey")
52311b51 866 (version "6.0.3")
d6ddeffc
DM
867 (source
868 (origin
869 (method url-fetch)
870 (uri (pypi-uri "keepkey" version))
871 (sha256
872 (base32
52311b51 873 "0z3d0m6364v9dv0njs4cd5m5ai6j6v35xaaxfxl90m9vmyxy81vd"))))
d6ddeffc
DM
874 (build-system python-build-system)
875 (arguments
876 `(#:phases
877 (modify-phases %standard-phases
878 (delete 'check)
879 (add-after 'install 'check
880 (lambda* (#:key inputs outputs #:allow-other-keys)
881 (add-installed-pythonpath inputs outputs)
882 (apply invoke "python" (find-files "tests/unit" "\\.py$")))))))
883 (propagated-inputs
884 `(("python-ecdsa" ,python-ecdsa)
885 ("python-hidapi" ,python-hidapi)
02d9e5d2 886 ("python-libusb1" ,python-libusb1)
d6ddeffc
DM
887 ("python-mnemonic" ,python-mnemonic)
888 ("python-protobuf" ,python-protobuf)))
889 (home-page "https://github.com/keepkey/python-keepkey")
890 (synopsis "Python library for communicating with KeepKey Hardware Wallet")
891 (description "@code{keepkey} is a Python library for communicating with
892the KeepKey Hardware Wallet.")
893 (license license:lgpl3)))
894
895(define-public python2-keepkey
896 (package-with-python2 python-keepkey))
897
d596fea5
DM
898(define-public ledger-agent
899 (package
900 (name "ledger-agent")
901 (version "0.9.0")
902 (source
903 (origin
904 (method url-fetch)
905 (uri (pypi-uri "ledger_agent" version))
906 (sha256
907 (base32
908 "03zj602m2rln9yvr08dswy56vzkbldp8b074ixwzz525dafblr92"))))
909 (build-system python-build-system)
910 (inputs
911 `(("python-ledgerblue" ,python-ledgerblue)
912 ("python-trezor-agent" ,python-trezor-agent)))
913 (home-page "http://github.com/romanz/trezor-agent")
914 (synopsis "Ledger as hardware SSH/GPG agent")
915 (description "This package allows using Ledger as hardware SSH/GPG agent.
916
5859fd6c
MB
917Usage for SSH: trezor-agent foo@@example.com --connect
918Usage for GPG: Initialize using trezor-gpg init \"Foo <foo@@example.com>\"
d596fea5
DM
919Then set the environment variable GNUPGHOME to
920\"${HOME}/.gnupg/trezor\".")
921 (license license:lgpl3)))
47c8ea99
DM
922
923(define-public trezor-agent
924 (package
925 (name "trezor-agent")
7fafdadd 926 (version "0.10.0")
47c8ea99
DM
927 (source
928 (origin
929 (method url-fetch)
930 (uri (pypi-uri "trezor_agent" version))
931 (sha256
932 (base32
7fafdadd
VC
933 "144657c7bn0a667dq5fv5r6j7iilxf3h9agj29v1m2qpq40g0az8"))))
934 (arguments
935 ;; Tests fail with "AttributeError: module 'attr' has no attribute 's'".
936 `(#:phases
937 (modify-phases %standard-phases
938 (add-after 'wrap 'fixup-agent-py
939 (lambda* (#:key inputs outputs #:allow-other-keys)
940 (let* ((out (assoc-ref outputs "out")))
941 ;; overwrite the wrapper with the real thing.
942 (install-file "./trezor_agent.py"
943 (string-append out "/bin"))
944 #t))))))
47c8ea99
DM
945 (build-system python-build-system)
946 (inputs
947 `(("python-trezor" ,python-trezor)
948 ("python-trezor-agent" ,python-trezor-agent)))
7fafdadd
VC
949 (native-inputs
950 `(("python-hidapi" ,python-hidapi)))
951 (home-page "https://github.com/romanz/trezor-agent")
47c8ea99
DM
952 (synopsis "Using Trezor as hardware SSH/GPG agent")
953 (description "This package allows using Trezor as a hardware SSH/GPG
954agent.")
955 (license license:lgpl3)))
50c4d676
DM
956
957(define-public keepkey-agent
958 (package
959 (name "keepkey-agent")
960 (version "0.9.0")
961 (source
962 (origin
963 (method url-fetch)
964 (uri (pypi-uri "keepkey_agent" version))
965 (sha256
966 (base32
967 "03779gvlx70i0nnry98i4pl1d92604ix5x6jgdfkrdgzqbh5vj27"))))
968 (build-system python-build-system)
969 (inputs
970 `(("python-keepkey" ,python-keepkey)
971 ("python-trezor-agent" ,python-trezor-agent)))
972 (home-page "http://github.com/romanz/trezor-agent")
973 (synopsis "KeepKey as hardware SSH/GPG agent")
974 (description "This package allows using KeepKey as a hardware SSH/GPG
975agent.")
976 (license license:lgpl3)))
3da86c52
AP
977
978(define-public python-stdnum
979 (package
980 (name "python-stdnum")
981 (version "1.8.1")
982 (source
983 (origin
984 (method url-fetch)
985 (uri (pypi-uri "python-stdnum" version))
986 (sha256
987 (base32
988 "0hvr47q32xbyiznpmbg4r8rcvxhnf0lwf33hcpnynyik57djy5np"))))
989 (build-system python-build-system)
990 (home-page
991 "https://arthurdejong.org/python-stdnum/")
992 (synopsis
993 "Python module to handle standardized number and code formats")
994 (description
995 "This is a Python library that aims to provide functions to handle,
996parse and validate standard numbers.
997The module supports more than 100 different number formats
998amongst which a great number of VAT and other tax numbers,
999personal identity and company identification codes,
1000international standard numbers (ISBN, IBAN, EAN, etc.)
1001and various other formats.
1002The module also inclused implementations of the Verhoeff,
1003Luhn and family of ISO/IEC 7064 check digit algorithms. ")
1004 (license license:lgpl2.1+)))
1005
1006(define-public python2-stdnum
1007 (package-with-python2 python-stdnum))
730553d7 1008
c7299015
NG
1009(define-public python-duniterpy
1010 (package
1011 (name "python-duniterpy")
a41cd135 1012 (version "0.55.1")
c7299015
NG
1013 (source
1014 (origin
1015 (method git-fetch)
1016 ;; Pypi's default URI is missing "requirements.txt" file.
1017 (uri (git-reference
7dab3e61 1018 (url "https://git.duniter.org/clients/python/duniterpy.git")
c7299015
NG
1019 (commit version)))
1020 (file-name (git-file-name name version))
1021 (sha256
1022 (base32
a41cd135 1023 "07zsbbkzmnvyv5v0vw2d42vw3ar4iqhlidy9376ysk4ldlj1igf7"))))
c7299015 1024 (build-system python-build-system)
1427d888
NG
1025 (arguments
1026 ;; Tests fail with "AttributeError: module 'attr' has no attribute 's'".
42a57df8
NG
1027 `(#:tests? #f
1028 #:phases
1029 (modify-phases %standard-phases
1030 (add-after 'build 'build-documentation
1031 (lambda _
1032 (invoke "make" "docs")))
1033 (add-after 'build-documentation 'install-documentation
1034 (lambda* (#:key inputs outputs #:allow-other-keys)
1035 (let* ((out (assoc-ref outputs "out"))
1036 (doc (string-append out "/share/doc/" ,name)))
1037 (mkdir-p doc)
1038 (copy-recursively "docs/_build/html" doc))
1039 #t)))))
1040 (native-inputs
352033f3
NG
1041 `(("sphinx" ,python-sphinx)
1042 ("sphinx-rtd-theme" ,python-sphinx-rtd-theme)))
c7299015 1043 (propagated-inputs
352033f3
NG
1044 `(("aiohttp" ,python-aiohttp)
1045 ("attr" ,python-attr)
1046 ("base58" ,python-base58)
1047 ("jsonschema" ,python-jsonschema)
1048 ("libnacl" ,python-libnacl)
1049 ("pyaes" ,python-pyaes)
1050 ("pylibscrypt" ,python-pylibscrypt)
1051 ("pypeg2" ,python-pypeg2)))
9f1a2be2 1052 (home-page "https://git.duniter.org/clients/python/duniterpy")
c7299015
NG
1053 (synopsis "Python implementation of Duniter API")
1054 (description "@code{duniterpy} is an implementation of
207a79b2 1055@uref{https://github.com/duniter/duniter/, duniter} API. Its
c7299015
NG
1056main features are:
1057@itemize
207a79b2
NG
1058@item Support Duniter's Basic Merkle API and protocol
1059@item Asynchronous/synchronous without threads
1060@item Support HTTP, HTTPS and Web Socket transport for Basic Merkle API
1061@item Support Elasticsearch Duniter4j API
c7299015 1062@item Duniter signing key
207a79b2 1063@item Sign/verify and encrypt/decrypt messages with the Duniter credentials
c7299015
NG
1064@end itemize")
1065 (license license:gpl3+)))
1066
730553d7
NG
1067(define-public silkaj
1068 (package
1069 (name "silkaj")
5d727935 1070 (version "0.7.3")
730553d7
NG
1071 (source
1072 (origin
1073 (method git-fetch)
1074 (uri (git-reference
1075 (url "https://git.duniter.org/clients/python/silkaj.git")
1076 (commit (string-append "v" version))))
1077 (file-name (git-file-name name version))
1078 (sha256
1079 (base32
5d727935 1080 "0yk2574yb0d0k0rg7qf0pkmjidblsad04x8hhqpy9k80rvgjcr5w"))))
730553d7
NG
1081 (build-system python-build-system)
1082 (arguments
e627052f 1083 `(#:tests? #f)) ;no test
730553d7 1084 (inputs
c14b3a8d
NG
1085 `(("click" ,python-click)
1086 ("duniterpy" ,python-duniterpy)
1087 ("ipaddress" ,python-ipaddress)
1088 ("pynacl" ,python-pynacl)
f41378b7
NG
1089 ("tabulate" ,python-tabulate)
1090 ("texttable" ,python-texttable)))
730553d7
NG
1091 (home-page "https://silkaj.duniter.org/")
1092 (synopsis "Command line client for Duniter network")
1093 (description "@code{Silkaj} is a command line client for the
1094@uref{https://github.com/duniter/duniter/, Duniter} network.
1095
1096Its features are:
1097@itemize
1098@item information about currency,
1099@item issuers difficulty to generate next block,
1100@item network view of nodes,
1101@item list of last issuers,
1102@item send transactions,
1103@item get account amount.
1104@end itemize")
1105 (license license:agpl3+)))
90bb244f
TLC
1106
1107(define-public grisbi
1108 (package
1109 (name "grisbi")
1110 (version "1.2.2")
1111 (source
1112 (origin
1113 (method url-fetch)
1114 (uri (string-append
1115 "mirror://sourceforge/grisbi/grisbi%20stable/"
1116 (version-major+minor version) ".x/" version
1117 "/grisbi-" version ".tar.bz2"))
1118 (sha256
1119 (base32
1120 "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw"))))
1121 (build-system glib-or-gtk-build-system)
1122 (arguments
1123 `(#:configure-flags (list "--without-ofx")))
1124 (propagated-inputs
1125 `(("dconf" ,dconf)))
1126 (native-inputs
1127 `(("glib" ,glib "bin") ; glib-compile-schemas
1128 ("pkg-config" ,pkg-config)
1129 ("intltool" ,intltool)))
1130 (inputs
1131 `(("gtk+" ,gtk+)
1132 ("libgsf" ,libgsf)))
1133 (synopsis "Personal accounting application")
1134 (description "Grisbi is a personal accounting application written by
1135French developers that is designed to follow French accounting rules.
1136Grisbi can manage multiple accounts, currencies and users. It manages
1137third party, expenditure and receipt categories, budgetary lines,
1138financial years, budget estimates, bankcard management and other
1139information.")
1140 (home-page "http://grisbi.org")
1141 (license license:gpl2+)))
01b37d0f 1142
1143(define-public trezord
1144 (package
1145 (name "trezord")
1146 (version "2.0.17")
1147 (source
1148 (origin
1149 (method git-fetch)
1150 (uri (git-reference
1151 (url "https://github.com/trezor/trezord-go.git")
1152 (commit (string-append "v" version))))
1153 (sha256
1154 (base32
1155 "0nqzpq0i3crh0i4r1cppja5sn3rwi1fv9afxzwzv63096x5l30a7"))
1156 (file-name (git-file-name name version))))
1157 (build-system go-build-system)
1158 (arguments
1159 '(#:import-path "github.com/trezor/trezord-go"))
1160 (home-page "https://trezor.io")
1161 (synopsis "Trezor Communication Daemon aka Trezor Bridge (written in Go)")
1162 (description "This allows a Trezor hardware wallet to communicate to the
1163Trezor wallet.")
1164 (license license:lgpl3+)))
af012922 1165
1166(define-public bitcoin-abc
1167 (package
1168 (inherit bitcoin-core)
1169 (name "bitcoin-abc")
054ff198 1170 (version "0.20.7")
af012922 1171 (source (origin
1172 (method url-fetch)
1173 (uri (string-append "https://download.bitcoinabc.org/"
28d46d9d 1174 version "/src/bitcoin-abc-"
af012922 1175 version ".tar.gz"))
1176 (sha256
1177 (base32
054ff198
GLV
1178 "0py5ilfi4r8qh5r9637vwch27sqrrn0dg9rz8bccnj3lp2xpzw27"))))
1179 (native-inputs
1180 `(("autoconf" ,autoconf)
1181 ("automake" ,automake)
1182 ("libtool" ,libtool)
1183 ("pkg-config" ,pkg-config)
1184 ("python" ,python) ; for the tests
1185 ("util-linux" ,util-linux) ; provides the hexdump command for tests
1186 ("qttools" ,qttools)))
28d46d9d
GLV
1187 (inputs
1188 `(("bdb" ,bdb-5.3)
1189 ("boost" ,boost)
1190 ("libevent" ,libevent)
1191 ("miniupnpc" ,miniupnpc)
1192 ("openssl" ,openssl)
1193 ("protobuf" ,protobuf)
054ff198
GLV
1194 ("qrencode" ,qrencode)
1195 ("qtbase" ,qtbase)
1196 ("zlib" ,zlib)))
af012922 1197 (home-page "https://www.bitcoinabc.org/")
1198 (synopsis "Bitcoin ABC peer-to-peer full node for the Bitcoin Cash protocol")
1199 (description
1200 "Bitcoin Cash brings sound money to the world, fulfilling the original
1201promise of Bitcoin as Peer-to-Peer Electronic Cash. Merchants and users are
1202empowered with low fees and reliable confirmations is a digital currency that
1203enables instant payments to anyone anywhere in the world. It uses
1204peer-to-peer technology to operate without central authority: managing
1205transactions and issuing money are carried out collectively by the network.
1206As a fork it implemented changes lowering the time between blocks and now
1207offers confimations after less than 5 seconds and have significantly lower
1208fees that BTC. Bitcoin ABC is the reference implementation of the Bitcoin
1209Cash protocol. This package provides the Bitcoin Cash command line client and
1210a client based on Qt. This is a fork of Bitcoin Core.")))
63ca1a89 1211
952fe2da
KK
1212(define-public libofx
1213 (package
1214 (name "libofx")
1215 (version "0.9.15")
1216 (source (origin
1217 (method git-fetch)
1218 (uri (git-reference
1219 (url "https://github.com/libofx/libofx")
1220 (commit version)))
1221 (file-name (git-file-name name version))
1222 (sha256
1223 (base32
1224 "1jx56ma351p8af8dvavygjwf6ipa7qbgq7bpdsymwj27apdnixfy"))))
1225 (build-system gnu-build-system)
1226 (arguments
1227 '(#:configure-flags
1228 (list (string-append "--with-opensp-includes="
1229 (assoc-ref %build-inputs "opensp")
1230 "/include/OpenSP"))))
1231 (native-inputs
1232 `(("autoconf" ,autoconf)
1233 ("automake" ,automake)
1234 ("gengetopt" ,gengetopt)
1235 ("help2man" ,help2man)
1236 ("libtool" ,libtool)
1237 ("pkg-config" ,pkg-config)))
1238 (inputs
1239 `(("curl" ,curl)
1240 ("libxml++-2" ,libxml++-2)
1241 ("opensp" ,opensp)))
1242 (home-page "http://libofx.sourceforge.net/")
1243 (synopsis "Library supporting the Open Financial Exchange format")
1244 (description
8b08cf4f 1245 "The LibOFX library is an API designed to allow applications to very easily
952fe2da
KK
1246support OFX command responses, usually provided by financial institutions. The
1247following three utilities are included with the library:
1248@enumerate
1249@item @code{ofxdump}
1250@item @code{ofx2qif}
1251@item @code{ofxconnect}
1252@end enumerate")
1253 (license license:gpl2+)))
1254
63ca1a89
KK
1255(define-public opensp
1256 (package
1257 (name "opensp")
1258 (version "1.5.2")
1259 (source (origin
1260 (method url-fetch)
1261 (uri (string-append "mirror://sourceforge/openjade/opensp/"
1262 version "/OpenSP-" version ".tar.gz"))
1263 (sha256
1264 (base32
1265 "1khpasr6l0a8nfz6kcf3s81vgdab8fm2dj291n5r2s53k228kx2p"))))
1266 (build-system gnu-build-system)
1267 (native-inputs
1268 `(("gettext" ,gettext-minimal)))
1269 (inputs
1270 `(("docbook-xml" ,docbook-xml-4.1.2)
1271 ("docbook-xsl" ,docbook-xsl)
1272 ("xmlto" ,xmlto)))
1273 (arguments
1274 `(;; TODO: Fix and enable tests.
1275 #:tests? #f
1276 #:phases
1277 (modify-phases %standard-phases
1278 (add-after 'unpack 'patch-docbook-paths
1279 (lambda* (#:key inputs #:allow-other-keys)
1280 (let ((xmldoc (string-append (assoc-ref inputs "docbook-xml")
1281 "/xml/dtd/docbook"))
1282 (xsldoc (string-append (assoc-ref inputs "docbook-xsl")
1283 "/xml/xsl/docbook-xsl-"
1284 ,(package-version docbook-xsl))))
1285 (substitute* (find-files "docsrc" "\\.xml$")
1286 (("/usr/share/sgml/docbook/xml-dtd-4.1.2") xmldoc)
1287 (("http://.*/docbookx\\.dtd")
1288 (string-append xmldoc "/docbookx.dtd")))
1289 ;; Directly pass the path to the stylesheet to xmlto.
1290 (substitute* "docsrc/Makefile.in"
1291 (("\\$\\(XMLTO\\)")
1292 (string-append "$(XMLTO) -x " xsldoc
1293 "/manpages/docbook.xsl")))
1294 #t))))))
1295 (home-page "http://openjade.sourceforge.net/")
1296 (synopsis "Suite of SGML/XML processing tools")
1297 (description "OpenSP is an object-oriented toolkit for SGML parsing and
1298entity management.")
1299 (license
1300 ;; expat license with added clause regarding advertising
1301 (license:non-copyleft
1302 "file://COPYING"
1303 "See COPYING in the distribution."))))