diff options
author | Giacomo Leidi <[email protected]> | 2023-01-04 15:21:48 +0100 |
---|---|---|
committer | Christopher Baines <[email protected]> | 2023-03-01 15:14:36 +0000 |
commit | a0da11ee473c1ec9abb43a1e36d5a9dd2906d828 (patch) | |
tree | 53c830bb6b52a60a7944484730614c1bd0e44c03 /gnu/packages/messaging.scm | |
parent | fbcc42ad6c22ef7257daede968ff2b8d41bdd30d (diff) |
gnu: Add python-pypresence.
* gnu/packages/messaging.scm (python-pypresence): New variable.
Signed-off-by: Christopher Baines <[email protected]>
Diffstat (limited to 'gnu/packages/messaging.scm')
-rw-r--r-- | gnu/packages/messaging.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index d540309a8f..5020146300 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -37,6 +37,7 @@ ;;; Copyright © 2022 Jack Hill <[email protected]> ;;; Copyright © 2022 Maxim Cournoyer <[email protected]> ;;; Copyright © 2022 Giovanni Biscuolo <[email protected]> +;;; Copyright © 2023 Giacomo Leidi <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3460,6 +3461,23 @@ Discord.") (home-page "https://github.com/taylordotfish/harmony") (license license:gpl3+))) +(define-public python-pypresence + (package + (name "python-pypresence") + (version "4.2.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "pypresence" version)) + (sha256 + (base32 + "0rp09lfxbc3syd1rhbai2516c3wyfxkzrsw8v4bd57qqr2cay7b9")))) + (build-system python-build-system) + (home-page "https://github.com/qwertyquerty/pypresence") + (synopsis "Discord RPC client") + (description "This package provides @code{python-pypresence}, a Discord +RPC client written in Python.") + (license license:expat))) + (define-public pn (package (name "pn") |