rekado pushed a commit to branch master
in repository guix.

commit 8c8d4028183adf42a2a5f8702c2f8101bc4aa59c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Tue Jan 14 14:29:04 2025 +0100

    gnu: Add python-iron-mq.
    
    * gnu/packages/python-xyz.scm (python-iron-mq): New variable.
    
    Change-Id: I97e18d93118747659db962c0fd2d384900ad254d
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9a94a2a8cb..5384aacc91 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2894,6 +2894,27 @@ utilities such as ping(1).")
 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
+elastic message queue for managing data and event flow within cloud
+applications and between systems.")
+    (license license:bsd-2)))
+
 (define-public python-rasterio
   (package
     (name "python-rasterio")

Reply via email to