guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 0c17217b3546878b5630467d8340e0bf53ed4b1e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jul 12 21:24:45 2025 +0100
gnu: python-setuptools-rust: Update to 1.11.1.
* gnu/packages/python-xyz.scm (python-setuptools-rust): Update to 1.11.1.
[source] <uri>: Fix PyPI archive name.
[propagated-inputs]: Remove python-typing-extensions; add
python-setuptools.
[native-inputs]: Remove python-setuptools and python-wheel.
Change-Id: I14fea55b5b33d02b00ba72c310f6e32131926549
---
gnu/packages/python-xyz.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4015efb58a..b3e1e40488 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28078,18 +28078,19 @@ Git.")
(define-public python-setuptools-rust
(package
(name "python-setuptools-rust")
- (version "1.6.0")
+ (version "1.11.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "setuptools-rust" version))
+ (uri (pypi-uri "setuptools_rust" version))
(sha256
- (base32 "0qi274r0fcnvxa8vs8vyhcknnzhq8pd0ig5zk1wmjc63x96p6vn8"))))
+ (base32 "1h3nbg1nlshzrqy7vz4q4g9wbz85dqkn6385p0ad7kjj48ww9avx"))))
(build-system pyproject-build-system)
- (arguments '(#:tests? #f)) ;no tests
+ (arguments
+ (list #:tests? #f)) ;tests rquire Cargo
(propagated-inputs
- (list python-semantic-version python-typing-extensions))
- (native-inputs (list python-setuptools python-wheel))
+ (list python-semantic-version
+ python-setuptools))
(home-page "https://github.com/PyO3/setuptools-rust")
(synopsis "Setuptools plugin for Rust extensions")
(description