gnu: python-titlecase: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-titlecase):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools-next.
[arguments] <phases>: Use custom 'check.

Change-Id: I0c52c3f815d0c7a44eed92b4cc9c5dbf25be23d0
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Hugo Buddelmeijer 2025-08-24 10:42:43 +02:00 committed by Sharlatan Hellseher
parent 578350017b
commit a7780fbcc1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -32643,7 +32643,17 @@ an upload option to send your work back to the platform.")
(sha256
(base32
"1x9myq3rlbw6wh946ncch8px7wyabhzacy2fjji13nmvrivs50vx"))))
(build-system python-build-system)
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? test-flags #:allow-other-keys)
(when tests?
(apply invoke "python" "-m" "unittest" test-flags)))))))
(native-inputs
(list python-setuptools-next))
(home-page "https://github.com/ppannuto/python-titlecase")
(synopsis "Capitalize strings similar to book titles")
(description