This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e94b3fbd11 gnu: python-harmony: Update to 0.7.2.
e94b3fbd11 is described below

commit e94b3fbd1178e2770e8377bcdf88af3d1ff1b9f0
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Sun Sep 28 10:46:40 2025 +0200

    gnu: python-harmony: Update to 0.7.2.
    
    * gnu/packages/messaging.scm (python-harmony): Update to 0.7.2.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Remove python-tox; add python-setuptools.
    
    Change-Id: Iaef8c2441d0db99ae8233098ffbe8839c2d00674
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/messaging.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 26ea6d55fe..1b9d6d2cbd 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3611,21 +3611,24 @@ for notification of events.")
     (license license:gpl3+)))
 
 (define-public python-harmony
+  ;; TODO: Remove python-harmony? Repository is archived.
   (package
     (name "python-harmony")
-    (version "0.7.1")
+    (version "0.7.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                     (url "https://github.com/taylordotfish/harmony.git";)
+                     (url "https://github.com/taylordotfish/harmony";)
                      (commit version)))
-              (file-name (string-append name "-" version "-checkout"))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1bm9xcnzpnpj6rlhbrnl2abwclzl7ivgh1vb5644y9mnhcs489js"))))
-    (build-system python-build-system)
+                "1d202pymabzvkzmxpplyjv55x74g937abxmnxdg9bxjjvp85c1nv"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f)) ;no tests in repository
     (native-inputs
-     (list python-tox))
+     (list python-setuptools))
     (inputs
      (list python-librecaptcha python-keyring python-requests))
     (synopsis "Discord account management")

Reply via email to