diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-17 21:07:52 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-28 22:44:05 +0000 |
commit | 1dea1431baf954f770afe26e999215bc37cf3fd1 (patch) | |
tree | 239f19663d0aa0208fc3188c43232b9253dacf20 /gnu | |
parent | 7f71a7a8aeb16a15113ec2b92f312047df71e0ad (diff) |
gnu: Add python-s3path.
* gnu/packages/python-web.scm (python-s3path): New variable.
Change-Id: I04c3fe63b9bf4b37d76a78c1df35617495955414
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index fd921c7787..dfbca85ed9 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1795,6 +1795,34 @@ responses as planin JSON/YAML file or save responses as plain JSON/YAML files.") (license license:bsd-2))) +(define-public python-s3path + (package + (name "python-s3path") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "s3path" version)) + (sha256 + (base32 "0gbvyr60mkpm7jbjiya0pmx26q6cfp27p5czw08jwn3k5cp77krk")))) + (build-system pyproject-build-system) + (arguments + (list + ;; XXX: All tests fail with error: fixture 's3_mock' not found. + #:tests? #f)) + (native-inputs + (list python-setuptools + python-wheel)) + (propagated-inputs + (list python-boto3 + python-smart-open)) + (home-page "https://github.com/liormizr/s3path") + (synopsis "Pathlib extension for AWS S3 Service") + (description + "S3Path provide a Python convenient File-System/Path like interface for +AWS S3 Service using boto3 S3 resource as a driver.") + (license license:asl2.0))) + (define-public python-sarif-om (package (name "python-sarif-om") |