diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-22 02:04:41 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:12 +0100 |
commit | 51b986b42e3420d4e11a00a3aeafb28e0cee8ee8 (patch) | |
tree | 8f8af6a7fbb148fa627ee9118a48ed8f77d4832f /gnu/packages/python-xyz.scm | |
parent | 18ef361e9c6dc2c2a30a759b10ffd58d438e0ccb (diff) |
gnu: python-fields: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-fields):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I08fdc957c0adaa59ad5fe0a7419ea084b220a061
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a63841a42c..b37c328afd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -37100,7 +37100,8 @@ It implements advanced Python dictionaries with dot notation access.") (uri (pypi-uri "fields" version)) (sha256 (base32 "09sppvhhkhkv9zc9g994m53z15v92csxwcf42ggkaknlv01smm1i")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://python-fields.readthedocs.io/") (synopsis "Python container class boilerplate killer") (description "Avoid repetetive boilerplate code in Python classes.") |