guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0d39a6d09fa747d7a8d094e130fde3261abcde33
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Oct 22 23:58:28 2025 +0200

    gnu: python-multiprocessing-logging: Update to 0.3.4.
    
    * gnu/packages/python-xyz.scm (python-multiprocessing-logging): Update to 
0.3.4.
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:test-backend>: Set it.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: I9887bafaaec07e2ac1e34c9abc2b36f4558c0f40
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 30fd0f3186..a49d3e130f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21516,18 +21516,20 @@ with your system's $EDITOR.")
 (define-public python-multiprocessing-logging
   (package
     (name "python-multiprocessing-logging")
-    (version "0.3.1")
+    (version "0.3.4")
     (home-page "https://github.com/jruere/multiprocessing-logging";)
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url home-page)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1625wy3djlr3b2fpd3vi822f8gw6b75mnls5a4318dbi9za5pf0y"))))
-    (build-system python-build-system)
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ib1plsyi4g68n0crc2cqhk54fccsmcijzh66g89fd3lgababgxd"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:test-backend #~'unittest))
+    (native-inputs (list python-setuptools))
     (synopsis "Manage logs from multiple processes")
     (description
      "This Python module implements a multiprocessing-aware @code{Handler}

Reply via email to