guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 93fccc95776d1b9bf2f72475af679f569224d9f7
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Oct 25 17:10:40 2025 +0200

    gnu: python-mwclient: Update to 0.11.0.
    
    * gnu/packages/python-xyz.scm (python-mwclient): Update to 0.11.0.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools.  Remove python-pytest-runner.
    [propagated-inputs]: Remove python-six.
    
    Change-Id: I8bb9bade72f8a2d6e5f4fd4a7641a8149ae4714e
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index be90db45b1..f8df42d185 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24824,23 +24824,25 @@ applications in seconds while maintaining all the 
flexibility.")
 (define-public python-mwclient
   (package
     (name "python-mwclient")
-    (version "0.10.1")
+    (version "0.11.0")
     (source
      (origin
        (method git-fetch)
-       ;; The PyPI version wouldn't contain tests.
        (uri (git-reference
               (url "https://github.com/mwclient/mwclient";)
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "120snnsh9n5svfwkyj1w9jrxf99jnqm0jk282yypd3lpyca1l9hj"))))
-    (build-system python-build-system)
+        (base32 "14kg353vzrwh7zks7zsza4hfb2n5vxprh9hnw4rjsimm8509axda"))))
+    (build-system pyproject-build-system)
     (propagated-inputs
-     (list python-requests-oauthlib python-six))
+     (list python-requests-oauthlib))
     (native-inputs
-     (list python-mock python-pytest python-pytest-cov
-           python-pytest-runner python-responses))
+     (list python-mock
+           python-pytest
+           python-pytest-cov
+           python-responses
+           python-setuptools))
     (home-page "https://github.com/btongminh/mwclient";)
     (synopsis "MediaWiki API client")
     (description "This package provides a MediaWiki API client.")

Reply via email to