guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 7c5418c9add6485ec745fc07c3a9695443e0d95e Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 b6435af494..42e8c7a317 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27917,18 +27917,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