summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-28 16:24:37 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:52 +0100
commit7809bebb3990a3fc27e80df8f806c9363c66ebd7 (patch)
treeb613d6cabe8f45bc1e8fad5627281f4d1a9b753d /gnu/packages/python-xyz.scm
parentde14383ed5eee0e99f1f025277116b4c79cb589e (diff)
gnu: python-appdirs: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-appdirs): [build-system]: Use pyproject. [arguments] <test-backend>: Use 'unittest. [native-inputs]: Add python-setuptools. Change-Id: I234b65a99870f0e7e373681719b1ba61e2da85fb
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index df09a8e329..6551030b68 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17378,12 +17378,12 @@ provided that can be used to do various manipulations with LilyPond files.")
(method url-fetch)
(uri (pypi-uri "appdirs" version))
(sha256
- (base32
- "0hfzmwknxqhg20aj83fx80vna74xfimg8sk18wb85fmin9kh2pbx"))))
- (build-system python-build-system)
+ (base32 "0hfzmwknxqhg20aj83fx80vna74xfimg8sk18wb85fmin9kh2pbx"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:test-backend #~'unittest))
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/ActiveState/appdirs")
- (synopsis
- "Determine platform-specific dirs, e.g. a \"user data dir\"")
+ (synopsis "Determine platform-specific dirs, e.g. a \"user data dir\"")
(description
"This module provides a portable way of finding out where user data
should be stored on various operating systems.")