guix_mirror_bot pushed a commit to branch ungraft
in repository guix.
commit c8477228a4adb2a8440395822a944b9e87608f1c
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Mon Dec 15 19:28:36 2025 +0100
gnu: python-simple-rlp: Switch to pyproject-build-sytem.
* gnu/packages/python-xyz.scm (python-simple-rlp): Switch to
pyproject-build-sytem.
[build-system]: Switch to pyproject-build-sytem.
[native-inputs]: Add python-setuptools and python-pytest.
Change-Id: Ic4e9b717e6be6885b123834391a53b94c19e1132
Signed-off-by: Rutherther <[email protected]>
---
gnu/packages/python-xyz.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0b6bb77593..bfff2cf46d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6914,7 +6914,11 @@ Python 3.3+.")
(sha256
(base32
"1nv92sphpkyrncak4qgj50qmgkmj4ycl2szbnv9c7ihgl5df4div"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list
+ python-pytest
+ python-setuptools))
(home-page "https://github.com/SamuelHaidu/simple-rlp")
(synopsis
"Python implementation of RLP (Recursive Length Prefix) encoding")