guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/11: gnu: Add python-pyee.


From: guix-commits
Subject: 01/11: gnu: Add python-pyee.
Date: Wed, 1 Mar 2023 10:17:02 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit f9abf24f242348db4af469c567f58b62cc181b2a
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Fri Dec 23 19:22:32 2022 +0100

    gnu: Add python-pyee.
    
    * gnu/packages/python-xyz.scm (python-pyee): New variable.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 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 f1b137f867..ed1832730e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30758,6 +30758,27 @@ provide the ability to selectively apply arguments to 
callable objects
 and to reference instance methods using weak-references.")
     (license license:bsd-3)))
 
+(define-public python-pyee
+  (package
+    (name "python-pyee")
+    (version "9.0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pyee" version))
+       (sha256
+        (base32 "0cjbxbqr9f8bn2h3ra69d550qj2r1hmsgrh5nx31ywmwia9c8w17"))))
+    (build-system python-build-system)
+    (propagated-inputs (list python-typing-extensions))
+    (native-inputs (list python-twisted python-trio))
+    (home-page "https://github.com/jfhbrook/pyee";)
+    (synopsis "Emit events with Python")
+    (description
+     "This package provides a port of node.js's EventEmitter to python.
+Additionally, it includes a number of subclasses useful for implementing async
+and threaded programming in python, such as async/await.")
+    (license license:expat)))
+
 (define-public python-queuelib
   (package
     (name "python-queuelib")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]