diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-30 10:58:33 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-30 10:58:40 +0100 |
commit | 338273aecaaa89c95203aa6dc73ba49f7fb4fd11 (patch) | |
tree | 1c687dff3323d674932475058d274493235bf07f | |
parent | d5264a46002e37c2b247fca971e9fdfb7bd2f518 (diff) |
gnu: python-discogs-client: Migrate to pyproject.
* gnu/packages/music.scm (python-discogs-client) [build-system]: Use
pyproject.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I6d91a792f0baf4db2d9ee259865da95b8edb235b
-rw-r--r-- | gnu/packages/music.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index cdf0aa3936..0dde33ec61 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5136,9 +5136,14 @@ provide a very simple interface for editing and playing MIDI loops.") (sha256 (base32 "0fxk8q8z5v5l961d9z2ywq49i2fz50h074p81zv6w6j9zzs7fb0g")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (native-inputs + (list python-setuptools + python-wheel)) (propagated-inputs - (list python-dateutil python-oauthlib python-requests)) + (list python-dateutil + python-oauthlib + python-requests)) (home-page "https://github.com/joalla/discogs_client") (synopsis "Python client for the Discogs API") (description "This is the continuation of the official Discogs API |