From 93fccc95776d1b9bf2f72475af679f569224d9f7 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 25 Oct 2025 17:10:40 +0200 Subject: [PATCH] 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 --- 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 be90db45b1edf366ba2dccb6bc4fd6fe07fe1703..f8df42d185cfa11dd90aac521c668d32e98a6585 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.")