From a7780fbcc17a7cd7ec76e0e21d9aff54f6078c5b Mon Sep 17 00:00:00 2001 From: Hugo Buddelmeijer Date: Sun, 24 Aug 2025 10:42:43 +0200 Subject: [PATCH] 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] : Use custom 'check. Change-Id: I0c52c3f815d0c7a44eed92b4cc9c5dbf25be23d0 Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index efe7f022fbd0270141ffc52faebb5b37b394dca2..bb051c14180fb96a87dbaf09bdbd95e2ee918a40 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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