guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 18ef361e9c6dc2c2a30a759b10ffd58d438e0ccb
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jul 22 02:04:01 2025 +0200
gnu: python-fastbencode: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-fastbencode):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I34ff7d31368a73d9314492ea430e153033e35eee
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 274342c921..a63841a42c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18851,8 +18851,8 @@ JSON Reference and JSON Pointer.")
(snippet '(for-each delete-file (find-files "." "\\.c$")))
(sha256
(base32 "15x1in22gwam7wwga5lbj1pd8hc9jk741pia3pv1m29n2xywpq2z"))))
- (build-system python-build-system)
- (native-inputs (list python-cython-3))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-cython-3 python-setuptools python-wheel))
(home-page "https://github.com/breezy-team/fastbencode")
(synopsis "Python Bencode (de)serializer with optional fast C extensions")
(description