diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-13 18:16:21 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-18 20:19:43 +0000 |
commit | 1e52bb77f060a5354321599ebdb31eaa4efd3ad3 (patch) | |
tree | 22394997ead4367be3b867dcade167ad9fa41751 /gnu | |
parent | ad876569dc35a0711e2f3931f4be3db83731d473 (diff) |
gnu: Add python-awscrt-for-awscli.
* gnu/packages/python-web.scm (python-awscrt-for-awscli): New variable.
Change-Id: Iea7f6467d01eee447d6605390be1066589537aae
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index eab9a7efc5..d3ef984a07 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4206,6 +4206,17 @@ opt.override_default_trust_store_from_path(None, os.getenv('SSL_CERT_FILE')) if "This package provides a common runtime for AWS Python projects.") (license license:asl2.0))) +(define-public python-awscrt-for-awscli + (package + (inherit python-awscrt) + (version "0.22.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "awscrt" version)) + (sha256 + (base32 "0w6pw42jbznrxh92cd97p96dg2nz698mcbfy7md3zw18jfsb18jc")))))) + (define-public awscli (package ;; Note: updating awscli typically requires updating botocore as well. |