summaryrefslogtreecommitdiff
path: root/gnu/packages/code.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-27 10:07:23 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-27 10:30:19 +0100
commit780f7fb4aaaf8a0d5c4660a224b7ac765d0e320f (patch)
treee9d6790aea60f75f5cc30cb8a86908400e9c42b2 /gnu/packages/code.scm
parentf87c390638d8f71408ffff2b234f2e15f7138ce8 (diff)
gnu: xenon: Switch to pyproject-build-system.
* gnu/packages/code.scm (xenon): [build-system]: Use pyproject. [native-inputs]: Add python-setuptools-next. Change-Id: Ie9ca7182715364a3dcd7171d75e93578bfaf69ad
Diffstat (limited to 'gnu/packages/code.scm')
-rw-r--r--gnu/packages/code.scm13
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 183c1de10a..781e7873cc 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -1196,9 +1196,16 @@ in a project.")
(sha256
(base32
"1yj31bqz2bphvvyb0jkas7bxc2rw76rf1csz0mwmvah8pbc3hxaa"))))
- (build-system python-build-system)
- (arguments (list #:tests? #f)) ;test suite not shipped with the PyPI archive
- (inputs (list python-pyyaml python-radon python-requests))
+ (build-system pyproject-build-system)
+ ;; Test suite not shipped with the PyPI archive; tests in Git require
+ ;; network access.
+ (arguments (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools-next))
+ (inputs
+ (list python-pyyaml
+ python-radon
+ python-requests))
(home-page "https://xenon.readthedocs.org/")
(synopsis "Monitor code metrics for Python on your CI server")
(description