gnu: font-ubuntu: Update to 0.83.
[jackhill/guix/guix.git] / gnu / packages / jrnl.scm
CommitLineData
cafc3f5a
EB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Eric Bavier <address@hidden>
f586c877 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
cafc3f5a
EB
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages jrnl)
21 #:use-module (guix packages)
22 #:use-module (guix licenses)
23 #:use-module (guix download)
24 #:use-module (guix build-system python)
25 #:use-module (gnu packages python))
26
27(define-public jrnl
28 (package
29 (name "jrnl")
30 (version "1.8.4")
31 (source
32 (origin
33 (method url-fetch)
34 (uri (string-append "https://github.com/maebert/jrnl/archive/"
35 version ".tar.gz"))
f586c877 36 (file-name (string-append name "-" version ".tar.gz"))
cafc3f5a
EB
37 (sha256
38 (base32
39 "019ky09sj5i7frmca0imv4jm46mn3f4lzah2wmiwxh22cisj7ksn"))))
40 (build-system python-build-system)
41 (native-inputs
42 `(("python-setuptools" ,python-setuptools)
43 ("behave" ,behave)))
44 (inputs
45 `(("python" ,python)
46 ("python-keyring" ,python-keyring)
47 ("python-pycrypto" ,python-pycrypto)
48 ("python-pytz" ,python-pytz)
49 ("python-tzlocal" ,python-tzlocal)
50 ("python-six" ,python-six)
51 ("python-dateutil" , python-dateutil-2)
52 ("python-parsedatetime" ,python-parsedatetime)))
53 (home-page "http://maebert.github.io/jrnl/")
54 (synopsis "Personal journal application")
55 (description
56 "Jrnl is a command line journal application that stores your journal in a
57plain text file. Optionally, your journal can be encrypted using 256-bit AES
58encryption.")
59 (license x11)))