summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-11 22:01:04 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:13 +0100
commit93a2615dec43a6328e9185bb6e3f7670e1301a78 (patch)
treeb7453a7d783e8fd981ec78fb124148b76bd1398b /gnu/packages/python-build.scm
parent73ac9f0fbef7140adc7042a7911a430f9e000d62 (diff)
gnu: python-pytoml: Switch to pyproject.
* gnu/packages/python-build.scm (python-pytoml): [build-system]: Use pyproject. [arguments] <tests?>: Disable to avoid pytest dependency. [native-inputs]: Add python-setuptools. Change-Id: I0f1ad014c856a0653f3f50e91d9c8227d9028373
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 7fb3ece8a76..a4821191a9e 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -146,9 +146,11 @@ write-only counterpart to Tomli, which is a read-only TOML parser.")
(method url-fetch)
(uri (pypi-uri "pytoml" version))
(sha256
- (base32
- "1rv1byiw82k7mj6aprcrqi2vdabs801y97xhfnrz7kxds34ggv4f"))))
- (build-system python-build-system)
+ (base32 "1rv1byiw82k7mj6aprcrqi2vdabs801y97xhfnrz7kxds34ggv4f"))))
+ (build-system pyproject-build-system)
+ (arguments `(#:tests? #f)) ;to avoid pytest dependency
+ (native-inputs
+ (list python-setuptools))
(home-page "https://github.com/avakar/pytoml")
(synopsis "Parser for TOML")
(description "This package provides a Python parser for TOML-0.4.0.")