guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3bf77c80204aee06a1fe197fb2bc757f117d3cb0
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Oct 28 14:59:54 2025 +0100
gnu: python-block-tracing: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-block-tracing):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: I15d18625d89f87bf000f20b95be4aa7942bf00d4
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 790798326c..fcf4a2dcc4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30093,10 +30093,10 @@ calculate the differences between sequences.")
(method url-fetch)
(uri (pypi-uri "block_tracing" version))
(sha256
- (base32
- "0s2y729qr5rs7n506qfh8cssk8m2bi6k2y5vbrh2z3raf2d01alz"))))
- (build-system python-build-system)
- (arguments '(#:tests? #f)) ; no tests
+ (base32 "0s2y729qr5rs7n506qfh8cssk8m2bi6k2y5vbrh2z3raf2d01alz"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ; No tests.
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/rianhunter/block_tracing")
(synopsis "Protect process memory")
(description