guix-devel
[Top][All Lists]
Advanced

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

[PATCH] gnu: Add python-pykka.


From: contact . ng0
Subject: [PATCH] gnu: Add python-pykka.
Date: Mon, 30 Jan 2017 21:53:34 +0000

From: ng0 <address@hidden>

* gnu/packages/python.scm (python-pykka): New variable.
---
 gnu/packages/python.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9e33412d8..65d7885b6 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2613,6 +2613,32 @@ somewhat intelligeble.")
 (define-public python2-pyjwt
   (package-with-python2 python-pyjwt))
 
+(define-public python-pykka
+  (package
+    (name "python-pykka")
+    (version "1.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "Pykka" version))
+       (sha256
+        (base32
+         "049w3r0mdnnw7xv19jiq7rvls9k7xs73x05b4qs5d6z4vvmgyiz8"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f)) ; Testsuite fails for unspecified reasons.
+    (home-page "https://www.pykka.org/";)
+    (synopsis "Pykka is a Python implementation of the actor model")
+    (description
+     "Pykka is a Python implementation of the actor model.
+The actor model introduces some simple rules to control the sharing
+of state and cooperation between execution units, which makes it
+easier to build concurrent applications.")
+    (license license:asl2.0)))
+
+(define-public python2-pykka
+  (package-with-python2 python-pykka))
+
 (define-public python-oauthlib
   (package
     (name "python-oauthlib")
-- 
2.11.0




reply via email to

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