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