mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: khard: Update to 0.12.2.
* gnu/packages/mail.scm (khard): Update to 0.12.2. [propagated-inputs]: Add python-ruamel.yaml, python-unidecode. Sort alphabetically.
This commit is contained in:
parent
7d6cfa4425
commit
224b1c833d
1 changed files with 11 additions and 7 deletions
|
@ -89,6 +89,7 @@ (define-module (gnu packages mail)
|
|||
#:use-module (gnu packages python-web)
|
||||
#:use-module (gnu packages readline)
|
||||
#:use-module (gnu packages search)
|
||||
#:use-module (gnu packages serialization)
|
||||
#:use-module (gnu packages texinfo)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages glib)
|
||||
|
@ -1731,13 +1732,13 @@ (define-public procmail
|
|||
(define-public khard
|
||||
(package
|
||||
(name "khard")
|
||||
(version "0.11.4")
|
||||
(version "0.12.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1shhlq6ljbd8095hd82v4mw56rjcfxf1ymmgknbgh8gix02nsxw1"))))
|
||||
"01y52qmab4cw9wmx87aahnxbyaxrxw8j2wx06mpcqsfvgk8d54wi"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -1748,14 +1749,17 @@ (define-public khard
|
|||
(doc (string-append out "/share/doc/khard")))
|
||||
(copy-recursively "misc/khard" doc)
|
||||
#t))))
|
||||
;; FIXME: check phase fails with
|
||||
;; "Config file /tmp/.config/khard/khard.conf not available"
|
||||
;; Tests are currently only runnable without preexisting data on
|
||||
;; the development branch:
|
||||
;; https://github.com/scheibler/khard/issues/176
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
`(("python-vobject" ,python-vobject)
|
||||
`(("python-atomicwrites" ,python-atomicwrites)
|
||||
("python-configobj" ,python-configobj)
|
||||
("python-pyyaml" ,python-pyyaml)
|
||||
("python-atomicwrites" ,python-atomicwrites)
|
||||
("python-configobj" ,python-configobj)))
|
||||
("python-ruamel.yaml" ,python-ruamel.yaml)
|
||||
("python-unidecode" ,python-unidecode)
|
||||
("python-vobject" ,python-vobject)))
|
||||
(synopsis "Console address book using CardDAV")
|
||||
(description "Khard is an address book for the console. It creates, reads,
|
||||
modifies and removes CardDAV address book entries at your local machine. For
|
||||
|
|
Loading…
Reference in a new issue