mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-pypresence.
* gnu/packages/messaging.scm (python-pypresence): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
fbcc42ad6c
commit
a0da11ee47
1 changed files with 18 additions and 0 deletions
|
@ -37,6 +37,7 @@
|
|||
;;; Copyright © 2022 Jack Hill <jackhill@jackhill.us>
|
||||
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2022 Giovanni Biscuolo <g@xelera.eu>
|
||||
;;; Copyright © 2023 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -3460,6 +3461,23 @@ (define-public python-harmony
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue