summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-08-12 18:37:02 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-13 12:46:43 +0100
commit6e467df8d9bf02674c85fdd8abd34dd5e13078c7 (patch)
treeaf6587161d010376e211cd7e22c715f175e521e2
parentb176f7c33c3839d726ad8b20a224ef5a5cb6bd37 (diff)
gnu: python-mpd2: Switch to pyproject.
* gnu/packages/mpd.scm (python-mpd2): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:test-flags>: Set them. <#:phases>: Replace 'check phase. [native-inputs]: Add python-setuptools, python-wheel. Remove python-pytest. Change-Id: If713f6f1ebf47f14f1f3d8a435be00c725f36a09 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/mpd.scm34
1 files changed, 22 insertions, 12 deletions
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index a4f8538bd2..d3df3507f0 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -39,6 +39,7 @@
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system meson)
+ #:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (gnu packages algebra)
#:use-module (gnu packages audio)
@@ -74,6 +75,7 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages pretty-print)
#:use-module (gnu packages python)
+ #:use-module (gnu packages python-build)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages pulseaudio)
#:use-module (gnu packages qt)
@@ -358,20 +360,28 @@ information about tracks being played to a scrobbler, such as Libre.FM.")
(package
(name "python-mpd2")
(version "3.0.4")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "python-mpd2" version))
- (sha256
- (base32
- "1r8saq1460yfa0sxfrvxqs2r453wz2xchlc9gzbpqznr49786rvs"))))
- (build-system python-build-system)
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Mic92/python-mpd2")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06j1n43sg3blp89xwgm64yssz6478y5r09xwdg9mnsgihpjpm89a"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _ (invoke "python" "-m" "pytest" "mpd/tests.py"))))))
+ (list
+ #:test-flags #~(list "-m" "unittest" "mpd.tests")
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? test-flags #:allow-other-keys)
+ (if tests?
+ (apply invoke "python" test-flags)
+ (format #t "test suite not run~%")))))))
(native-inputs
- (list python-mock python-pytest))
+ (list python-mock python-setuptools python-wheel))
(home-page "https://github.com/Mic92/python-mpd2")
(synopsis "Python MPD client library")
(description "Python-mpd2 is a Python library which provides a client