diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 15:57:37 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 16:18:51 +0100 |
commit | f9dd2ad0397b2da723ecc9d74cd946aa553470d3 (patch) | |
tree | 3224db93abf60437d1c12a893f59183a9075e3dc | |
parent | ffa791a395c6056246b96b296479512e5b655129 (diff) |
gnu: python-s3fs: Update to 2025.7.0.
* gnu/packages/python-web.scm (python-s3fs): Update to 2025.7.0.
[native-inputs]: Remove python-flask, python-flask-cors, python-moto, python-pytest,
python-pytest-asyncio, and python-wheel.
Change-Id: I8c7c74a952fb71259e8b20b8ef4153d4a276214c
-rw-r--r-- | gnu/packages/python-web.scm | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1aed9e587b..d9f7c7e208 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6480,26 +6480,23 @@ Betamax that may possibly end up in the main package.") (define-public python-s3fs (package (name "python-s3fs") - (version "2024.12.0") + (version "2025.7.0") (source (origin (method url-fetch) (uri (pypi-uri "s3fs" version)) (sha256 - (base32 "0mpxk4xvg0gwzapdh9r3fvnjhi8ymf96f7c756xabk26b67kl3qv")))) + (base32 "0b82wqf70q1srsjb7xbbjhlzm08lbghzm1pbwdam2x6prb09wzsy")))) (build-system pyproject-build-system) - ;; Many tests fail with "No such file or directory" raised by the HTTP - ;; client. + ;; TODO: Many tests fail with "No such file or directory" raised by the + ;; HTTP client. (arguments (list #:tests? #false)) - (propagated-inputs (list python-aiobotocore python-aiohttp python-fsspec)) (native-inputs - (list python-flask ;for moto - python-flask-cors - python-moto - python-pytest - python-pytest-asyncio - python-setuptools - python-wheel)) + (list python-setuptools)) + (propagated-inputs + (list python-aiobotocore + python-aiohttp + python-fsspec)) (home-page "https://github.com/fsspec/s3fs/") (synopsis "Convenient filesystem interface over S3") (description "This package provides a convenient filesystem interface over |