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.")
103 (uri (pypi-uri "toml" version)) 103 (uri (pypi-uri "toml" version))
104 (sha256 104 (sha256
105 (base32 "13z6rff86bzdpl094x0vmfvls779931xj90dlbs9kpfm138s3gdk")))) 105 (base32 "13z6rff86bzdpl094x0vmfvls779931xj90dlbs9kpfm138s3gdk"))))
106 (build-system python-build-system) 106 (build-system pyproject-build-system)
107 (arguments 107 (arguments
108 `(#:tests? #f)) ;no tests suite in release 108 `(#:tests? #f)) ;no tests suite in release
109 (native-inputs
110 (list python-setuptools))
109 (home-page "https://github.com/uiri/toml") 111 (home-page "https://github.com/uiri/toml")
110 (synopsis "Library for TOML") 112 (synopsis "Library for TOML")
111 (description 113 (description