GNU bug report logs - #59764
[PATCH 0/8] Update searx and dependencies

Previous Next

Package: guix-patches;

Reported by: kiasoc5 <kiasoc5 <at> disroot.org>

Date: Fri, 2 Dec 2022 05:57:01 UTC

Severity: normal

Tags: patch

Done: kiasoc5 <at> disroot.org

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: kiasoc5 <kiasoc5 <at> disroot.org>
To: 59764 <at> debbugs.gnu.org
Cc: kiasoc5 <kiasoc5 <at> disroot.org>
Subject: [bug#59764] [PATCH 2/8] gnu: Add python-greenlet.
Date: Fri,  2 Dec 2022 00:59:13 -0500
* gnu/packages/python-xyz.scm (python-greenlet): New variable.
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 17fbd9de9e..2e1db8a252 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12370,6 +12370,28 @@ (define-public python-curio
 tasks, sockets, files, locks, and queues.")
     (license license:bsd-3)))
 
+(define-public python-greenlet
+(package
+  (name "python-greenlet")
+  (version "2.0.1")
+  (source (origin
+            (method url-fetch)
+            (uri (pypi-uri "greenlet" version))
+            (sha256
+             (base32
+              "0rqgxp1fai0fcyv46nd1389mxvk3ccixgdkwws70xnk08ib05rj2"))))
+  (build-system python-build-system)
+  (native-inputs (list python-objgraph python-psutil))
+  (home-page "https://greenlet.readthedocs.io/")
+  (synopsis "Lightweight in-process concurrent programming")
+  (description
+    "This package provides greenlets for Python.  greenlets are lightweight
+coroutines for in-process sequential concurrent programming.  They are
+frequently used with frameworks such as gevent to provide higher-level
+abstractions and asynchronous I/O.  They are analagous to threads or Python's
+built-in coroutines.")
+  (license license:expat)))
+
 (define-public python-tables
   (package
     (name "python-tables")
-- 
2.38.1





This bug report was last modified 1 year and 176 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.