guix_mirror_bot pushed a commit to branch master
in repository guix.
commit f77b837299c5db88469d1deff77047dcbe466c22
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Oct 4 00:58:21 2025 +0200
gnu: python-bip39: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-bip39):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: Ibcab592736525d53a4081cf673bed58f368dd2d7
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 739641524e..35a2e42647 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4699,8 +4699,8 @@ for working with bidirectional mappings in Python.")
(uri (pypi-uri "bip39" version))
(sha256
(base32 "18m7d3gi7vj2zi0bl1z7m0nhcj6i8j9vj4vil276siagnpkv64ry"))))
- (build-system python-build-system)
- (native-inputs (list python-pytest))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/de-centralized-systems/python-bip39/")
(synopsis "Self-contained and simple BIP39 implementation in Python")
(description