aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/video.scm
diff options
context:
space:
mode:
authorzimoun <zimon.toutoune@gmail.com>2022-11-17 03:50:08 +0100
committerRicardo Wurmus <rekado@elephly.net>2022-11-24 12:31:20 +0100
commit30f2fc13c659424681763a9bb3b49cc8c123f641 (patch)
tree9d837419650e3f17d3f3aee23ccbd74ebb10c612 /gnu/packages/video.scm
parent9048d502dab1a18091ee652671a7c88e9eaffe0a (diff)
downloadguix-30f2fc13c659424681763a9bb3b49cc8c123f641.tar.gz
guix-30f2fc13c659424681763a9bb3b49cc8c123f641.zip
gnu: r-biostrings: Update to 2.66.0.
* gnu/packages/bioconductor.scm (r-biostrings): Update to 2.66.0.
Diffstat (limited to 'gnu/packages/video.scm')
0 files changed, 0 insertions, 0 deletions
lDAV/CardDAV for quick and efficient syncing @item Automatically keep history and back up @item Works with all tested CalDAV and CardDAV clients @end itemize") (license gpl3+))) (define-public vdirsyncer (package (name "vdirsyncer") (version "0.19.2") (source (origin (method url-fetch) (uri (pypi-uri name version)) (sha256 (base32 "1fl21m10ghrpmkqa12g0qri99cxk9879pkb60jd4b4w2mgp8q1gx")))) (build-system python-build-system) (arguments (list #:tests? #f ; the test suite is very flakey #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (add-installed-pythonpath inputs outputs) (setenv "DETERMINISTIC_TESTS" "true") (setenv "DAV_SERVER" "radicale") (setenv "REMOTESTORAGE_SERVER" "skip") (if tests? (invoke "make" "test")))) (add-after 'unpack 'patch-version-call (lambda _ (substitute* "docs/conf.py" (("^release.*") (string-append "release = '" #$version "'\n")))))))) (native-inputs (list python-setuptools-scm python-sphinx ;; Required for testing python-aioresponses python-hypothesis python-trustme python-pytest python-pytest-asyncio python-pytest-cov python-pytest-httpserver radicale)) (inputs (list python-aiohttp python-aiostream python-atomicwrites python-click python-click-log python-requests python-requests-toolbelt)) (synopsis "Synchronize calendars and contacts") (description "Vdirsyncer synchronizes your calendars and addressbooks between two storage locations. The most popular purpose is to synchronize a CalDAV or CardDAV server with a local folder or file. The local data can then be accessed via a variety of programs, none of which have to know or worry about syncing to a server.") (home-page "https://github.com/pimutils/vdirsyncer") (license bsd-3)))