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
This commit is contained in:
Sharlatan Hellseher 2025-07-28 16:24:37 +01:00
parent 17626f3bf9
commit 5f14f2c49c
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -17402,12 +17402,12 @@ provided that can be used to do various manipulations with LilyPond files.")
(method url-fetch) (method url-fetch)
(uri (pypi-uri "appdirs" version)) (uri (pypi-uri "appdirs" version))
(sha256 (sha256
(base32 (base32 "0hfzmwknxqhg20aj83fx80vna74xfimg8sk18wb85fmin9kh2pbx"))))
"0hfzmwknxqhg20aj83fx80vna74xfimg8sk18wb85fmin9kh2pbx")))) (build-system pyproject-build-system)
(build-system python-build-system) (arguments (list #:test-backend #~'unittest))
(native-inputs (list python-setuptools))
(home-page "https://github.com/ActiveState/appdirs") (home-page "https://github.com/ActiveState/appdirs")
(synopsis (synopsis "Determine platform-specific dirs, e.g. a \"user data dir\"")
"Determine platform-specific dirs, e.g. a \"user data dir\"")
(description (description
"This module provides a portable way of finding out where user data "This module provides a portable way of finding out where user data
should be stored on various operating systems.") should be stored on various operating systems.")