diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-21 16:38:29 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:48 +0100 |
| commit | 3be7fb7cb353cb2008018606c6e5a0b414aa2b29 (patch) | |
| tree | efe14b9f6f4aff24c0f6dc5ebf5bda4d093d2d55 /gnu/packages/python-xyz.scm | |
| parent | 6ae67d1e3eed2f931dca6bc54d94d1adbe1e0790 (diff) | |
gnu: python-iron-mq: Update to 0.9-0.e6ff76a.
* gnu/packages/python-xyz.scm (python-iron-mq): Update to 0.9-0.e6ff76a.
[source]: Switch to git-fetch.
[arguments]: Disable tests.
[native-inputs]: Remove python-wheel.
Change-Id: I28a79b34158d632c4580bf87fe08d5f0c830b40a
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 44 |
1 files changed, 27 insertions, 17 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index dfff0e4f35..c9fded9b19 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4083,25 +4083,35 @@ API wrappers to build on.") (license license:bsd-2)))) (define-public python-iron-mq - (package - (name "python-iron-mq") - (version "0.9") - (source - (origin - (method url-fetch) - (uri (pypi-uri "iron-mq" version)) - (sha256 - (base32 "1ypc71xppidy5lx3mbfj1zc685na3jns441q6il8kh6rfbc42169")))) - (build-system pyproject-build-system) - (propagated-inputs (list python-iron-core)) - (native-inputs (list python-setuptools python-wheel)) - (home-page "https://github.com/iron-io/iron_mq_python") - (synopsis "Client library for IronMQ, a message queue in the cloud") - (description - "This package provides Python language bindings for IronMQ. IronMQ is an + (let ((commit "e6ff76ac0068c3184d9003e3163b94ffc839dbe8") + (revision "0")) + (package + (name "python-iron-mq") + (version (git-version "0.9" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/iron-io/iron_mq_python") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bb8gpzb3jr2r6i367jspwcxrz5ygdf40a67nl9aj5n79hg1aq8x")))) + (build-system pyproject-build-system) + (arguments + (list + ;; XXX: Tests are broken and require network access. + #:tests? #f + #:test-backend #~'unittest)) + (propagated-inputs (list python-iron-core)) + (native-inputs (list python-setuptools)) + (home-page "https://github.com/iron-io/iron_mq_python") + (synopsis "Client library for IronMQ, a message queue in the cloud") + (description + "This package provides Python language bindings for IronMQ. IronMQ is an elastic message queue for managing data and event flow within cloud applications and between systems.") - (license license:bsd-2))) + (license license:bsd-2)))) (define-public python-rasterio (package |
