diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-27 22:51:57 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-28 12:06:20 +0000 |
| commit | ed0b121366630757fb0dd96a88fcebcca1f92d0a (patch) | |
| tree | e8f6a7a818cec442b300af151bb0bc9e9d850558 | |
| parent | e4e3eb54d0f0e52e542831272b38a6d6710420e4 (diff) | |
gnu: python-sendgrid: Update to 6.9.7.
* gnu/packages/python-web.scm (python-sendgrid): Update to 6.9.7.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Add python-cryptography, python-flask,
python-pyyaml, python-six, and python-werkzeug.
[native-inputs]: Add python-pytest and python-setuptools.
Change-Id: I7bfe8845aed9d0f44cc732fc1c825f90bae25716
| -rw-r--r-- | gnu/packages/python-web.scm | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index a960b17c16d..6e896e14410 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm | |||
| @@ -12782,20 +12782,34 @@ possible, supporting most common functionality.") | |||
| 12782 | (package | 12782 | (package |
| 12783 | (name "python-sendgrid") | 12783 | (name "python-sendgrid") |
| 12784 | (version "6.9.7") | 12784 | (version "6.9.7") |
| 12785 | (home-page "https://github.com/sendgrid/sendgrid-python/") | 12785 | (source |
| 12786 | (source (origin | 12786 | (origin |
| 12787 | (method git-fetch) | 12787 | (method git-fetch) |
| 12788 | (uri (git-reference | 12788 | (uri (git-reference |
| 12789 | (url home-page) | 12789 | (url "https://github.com/sendgrid/sendgrid-python") |
| 12790 | (commit version))) | 12790 | (commit version))) |
| 12791 | (file-name (git-file-name name version)) | 12791 | (file-name (git-file-name name version)) |
| 12792 | (sha256 | 12792 | (sha256 |
| 12793 | (base32 | 12793 | (base32 "0kvp4gm3bpcsj2mkv05pgvlcv1jlsfhcljcv61wz5kq9d273h7rg")))) |
| 12794 | "0kvp4gm3bpcsj2mkv05pgvlcv1jlsfhcljcv61wz5kq9d273h7rg")))) | 12794 | (build-system pyproject-build-system) |
| 12795 | (build-system python-build-system) | ||
| 12796 | (arguments | 12795 | (arguments |
| 12797 | (list #:tests? #f)) ;241/340 tests fail due to attempted web access | 12796 | (list |
| 12798 | (propagated-inputs (list python-http-client python-starkbank-ecdsa)) | 12797 | #:test-flags |
| 12798 | #~(list "--ignore=test/integ" | ||
| 12799 | ;; Network access is required. | ||
| 12800 | "--ignore=live_test.py"))) | ||
| 12801 | (native-inputs | ||
| 12802 | (list python-pytest | ||
| 12803 | python-setuptools)) | ||
| 12804 | (propagated-inputs | ||
| 12805 | (list python-cryptography | ||
| 12806 | python-http-client | ||
| 12807 | python-flask | ||
| 12808 | python-pyyaml | ||
| 12809 | python-six ;hard dependency | ||
| 12810 | python-starkbank-ecdsa | ||
| 12811 | python-werkzeug)) | ||
| 12812 | (home-page "https://github.com/sendgrid/sendgrid-python/") | ||
| 12799 | (synopsis "SendGrid API library for Python") | 12813 | (synopsis "SendGrid API library for Python") |
| 12800 | (description | 12814 | (description |
| 12801 | "The @code{sendgrid} Python library allows access to the | 12815 | "The @code{sendgrid} Python library allows access to the |
