summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-11 21:57:36 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:34 +0100
commitb25a7cb3bb544e3735630ba81e85c39974f8a2d7 (patch)
tree2cdb67f52ee7987521803e6cd3c6e2535220413e /gnu/packages/python-build.scm
parent7b05b4a2c158b495e6acee4a99440a84d3a8f63f (diff)
gnu: python-toml: Switch to pyproject.
* gnu/packages/python-build.scm (python-toml): [build-system]: Use pyproject. [native-inputs]: Add python-setuptools. Change-Id: If5836a9c2229c7c6f681e211c8346cdc5c37f505
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index c858187885a..ef5d3bc5a9c 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -103,9 +103,11 @@ stripped of Pytest specific details.")
(uri (pypi-uri "toml" version))
(sha256
(base32 "13z6rff86bzdpl094x0vmfvls779931xj90dlbs9kpfm138s3gdk"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
`(#:tests? #f)) ;no tests suite in release
+ (native-inputs
+ (list python-setuptools))
(home-page "https://github.com/uiri/toml")
(synopsis "Library for TOML")
(description