diff options
author | EuAndreh <eu@euandre.org> | 2022-11-04 13:57:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-04 13:57:51 -0300 |
commit | fde5f1916b05b2695a2c699116e41320c86267ef (patch) | |
tree | f38c974a9f69fa30f8f0f5bf3ddd34c8b5769ab7 /src/xyz/euandreh | |
parent | src/xyz/euandreh/queue.scm: Fix copy pasta of tmux-resurrect (diff) | |
download | package-repository-fde5f1916b05b2695a2c699116e41320c86267ef.tar.gz package-repository-fde5f1916b05b2695a2c699116e41320c86267ef.tar.xz |
src/xyz/euandreh/queue.scm: Add python-remhind
Diffstat (limited to 'src/xyz/euandreh')
-rw-r--r-- | src/xyz/euandreh/queue.scm | 60 |
1 files changed, 59 insertions, 1 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index d0f94d2..9eb4bb7 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -11,6 +11,8 @@ #:use-module (gnu packages cpio) #:use-module (gnu packages cups) #:use-module (gnu packages image) + #:use-module (gnu packages glib) + #:use-module (gnu packages gnome) #:use-module (gnu packages package-management) #:use-module (gnu packages python-build) #:use-module (gnu packages python-crypto) @@ -332,9 +334,65 @@ left it off the last time it was used.") (home-page "https://github.com/tmux-plugins/tmux-continuum/") (license license:expat))) +(define-public python-xdg + (package + (name "python-xdg") + (version "5.1.1") + (source + (origin + (method url-fetch) + (uri + (pypi-uri "xdg" version)) + (sha256 + (base32 "0v6hmhjqlc6km284lr14kc4h5rl6xva231q1lsr8hq7crhk9yqda")))) + (build-system python-build-system) + (home-page "https://github.com/srstevenson/xdg") + (synopsis "An implementation of the XDG Base Directory Specification in Python") + (description + "xdg is a Python module that provides functions to return paths to the +directories defined by the XDG Base Directory Specification, to save you from +duplicating the same snippet of logic in every Python utility you write that +deals with user cache, configuration, or data files. +It has no external dependencies.") + (license license:isc))) + +(define-public python-remhind + (package + (name "python-remhind") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri + (pypi-uri "remhind" version)) + (sha256 + (base32 "1b0f2h76l9grhyplda2ny02ifqgmc7mf2nxwl0f839pvmcy5dyp4")))) + (build-system python-build-system) + (propagated-inputs + (list libnotify + python-aionotify + python-dateutil + python-icalendar + python-pygobject + python-pyinotify + python-toml + python-tzlocal + python-xdg)) + (home-page "https://github.com/nicoe/remhind/") + (synopsis "A daemon to display notifications of iCalendar events") + (description + "A notification daemon of events stored in directories. + +Those directories will be monitored for change in order to allow you to use +solution like vdirsyncer to sync your CalDAV server with your local filesystem. +This package provides a daemon to display notifications of iCalendar events") + (license license:gpl3))) + (list python-docx python-telegram-bot epson-L365 tmux-plugin-resurrect - tmux-plugin-continuum) + tmux-plugin-continuum + python-xdg + python-remhind) |