guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add python-harmony.


From: guix-commits
Subject: 02/02: gnu: Add python-harmony.
Date: Fri, 25 Feb 2022 11:11:58 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit ec0404fcc650ddcdd76a41aeee8afb1df72095b4
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Fri Feb 25 16:49:07 2022 +0100

    gnu: Add python-harmony.
    
    * gnu/packages/messaging.scm (python-harmony): New variable.
---
 gnu/packages/messaging.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]