diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-12 21:24:45 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:42 +0100 |
| commit | 49584bb33bf90e4675c767c0491dfd573233d4a1 (patch) | |
| tree | 93a6567482545a1b371ecaea5de76df550a9bcfc /gnu/packages/python-xyz.scm | |
| parent | dd5c5bf2deeee454340a26900a65a552b3195252 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4380fba773..2f6ce68c1e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27998,18 +27998,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 |
