mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add python-harmony.
* gnu/packages/messaging.scm (python-harmony): New variable.
This commit is contained in:
parent
a751795551
commit
ec0404fcc6
1 changed files with 24 additions and 0 deletions
|
@ -3299,4 +3299,28 @@ (define-public python-librecaptcha
|
||||||
(home-page "https://github.com/taylordotfish/librecaptcha")
|
(home-page "https://github.com/taylordotfish/librecaptcha")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public python-harmony
|
||||||
|
(package
|
||||||
|
(name "python-harmony")
|
||||||
|
(version "0.7.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/taylordotfish/harmony.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1bm9xcnzpnpj6rlhbrnl2abwclzl7ivgh1vb5644y9mnhcs489js"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list python-tox))
|
||||||
|
(inputs
|
||||||
|
(list python-librecaptcha python-keyring python-requests))
|
||||||
|
(synopsis "Discord account management")
|
||||||
|
(description "This package provides account management tools for
|
||||||
|
Discord.")
|
||||||
|
(home-page "https://github.com/taylordotfish/harmony")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
;;; messaging.scm ends here
|
;;; messaging.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue