gnu: khal: Update to 0.11.1.

* gnu/packages/calendar.scm (khal): Update to 0.11.1.
[inputs]: Remove sqlite.
[description]: Add some more information.
This commit is contained in:
Leo Famulari 2023-04-23 10:36:37 -04:00
parent 4502de61f2
commit 0244132db6
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -181,13 +181,13 @@ (define-public libical
(define-public khal (define-public khal
(package (package
(name "khal") (name "khal")
(version "0.10.5") (version "0.11.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "khal" version)) (uri (pypi-uri "khal" version))
(sha256 (sha256
(base32 (base32
"0xhcrx7lcjk126i2xgqmgb199vd4hxsq34mkdmhdh9ia62nbgvsf")))) "07k0cfbfkx9fhfk4gf73vh34c05i1cb72gc15a1lmx9knxy4h503"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:tests? #f ; The test suite is unreliable. See <https://bugs.gnu.org/44197> `(#:tests? #f ; The test suite is unreliable. See <https://bugs.gnu.org/44197>
@ -206,8 +206,7 @@ (define-public khal
;; Required to build manpage ;; Required to build manpage
python-sphinxcontrib-newsfeed python-sphinx)) python-sphinxcontrib-newsfeed python-sphinx))
(inputs (inputs
(list sqlite (list python-configobj
python-configobj
python-dateutil python-dateutil
python-icalendar python-icalendar
python-tzlocal python-tzlocal
@ -220,7 +219,9 @@ (define-public khal
python-pyxdg)) python-pyxdg))
(synopsis "Console calendar program") (synopsis "Console calendar program")
(description "Khal is a standards based console calendar program, (description "Khal is a standards based console calendar program,
able to synchronize with CalDAV servers through vdirsyncer.") able to synchronize with CalDAV servers through vdirsyncer. It includes
both a @acronym{CLI, command-line interface} and a @acronym{TUI, textual user
interface} named 'ikhal'.")
(home-page "https://lostpackets.de/khal/") (home-page "https://lostpackets.de/khal/")
(license license:expat))) (license license:expat)))