From ec0404fcc650ddcdd76a41aeee8afb1df72095b4 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Fri, 25 Feb 2022 16:49:07 +0100 Subject: gnu: Add python-harmony. * gnu/packages/messaging.scm (python-harmony): New variable. --- gnu/packages/messaging.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu') 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 -- cgit v1.2.3