From 73e653f8697d89ecc95799aa65ba376549da4152 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Tue, 17 Jun 2025 00:49:41 +0200 Subject: [PATCH] gnu: python-entrypoint2: Switch to pyproject-build-system. * gnu/packages/python-xyz.scm (python-entrypoint2) [build-system]: Switch to pyproject-build-system. [arguments]: Remove it. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: Icf0ddfad1edd2b58f39c43cb681bd7f03c357610 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ab6e813fd371e155cc4d09be9b048924a1df9b91..a7cff787b37ee9566dc3b5b99704654365905630 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23856,11 +23856,9 @@ etc.") (uri (pypi-uri "entrypoint2" version)) (sha256 (base32 "1qyxq54r2fbh09ab5sffbxajy8arbk6czxz5lq3ccr9qrypw6w27")))) - (build-system python-build-system) - (arguments - `(#:test-target "pytest")) - (native-inputs - (list python-easyprocess python-pytest python-pytest-runner)) + (build-system pyproject-build-system) + (native-inputs (list python-easyprocess python-pytest python-pytest-runner + python-setuptools python-wheel)) (home-page "https://github.com/ponty/entrypoint2") (synopsis "Command-line interface for Python modules") (description