diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2022-02-25 16:49:07 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2022-02-25 17:11:35 +0100 |
commit | ec0404fcc650ddcdd76a41aeee8afb1df72095b4 (patch) | |
tree | 04b906b2fe93a2067e7e85b27db703f2b8220b00 /gnu | |
parent | a751795551b8294bb7e49160a6b5a0720c3ab9b4 (diff) |
gnu: Add python-harmony.
* gnu/packages/messaging.scm (python-harmony): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/messaging.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 2497c49e7d..3402a63acc 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -3299,4 +3299,28 @@ for notification of events.") (home-page "https://github.com/taylordotfish/librecaptcha") (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 |