diff options
-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 |