summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-06-17 00:49:41 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-20 11:35:59 +0100
commit73e653f8697d89ecc95799aa65ba376549da4152 (patch)
tree24b952e8bcf70c7d538af7686f690ec24ca44ba6 /gnu/packages/python-xyz.scm
parent8dfceb1de62fd19dac81262e7858f589a86c3ac8 (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm8
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ab6e813fd3..a7cff787b3 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