guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add python-blinker.


From: David Thompson
Subject: 01/02: gnu: Add python-blinker.
Date: Sun, 26 Jul 2015 22:29:18 +0000

davexunit pushed a commit to branch master
in repository guix.

commit 59ad30e3a83cb7170b0b7a0c191315f1e6c7db25
Author: Christopher Allan Webber <address@hidden>
Date:   Fri Jul 10 16:12:47 2015 -0500

    gnu: Add python-blinker.
    
    * gnu/packages/python.scm (python-blinker, python2-blinker): New variables.
---
 gnu/packages/python.scm |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 7709fbd..eec2c11 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2154,6 +2154,35 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom 
formats.")
 (define-public python2-feedgenerator
   (package-with-python2 python-feedgenerator))
 
+(define-public python-blinker
+  (package
+    (name "python-blinker")
+    (version "1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://pypi.python.org/packages/source/b/blinker/blinker-";
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "0bvfxkmjx6bpa302pv7v2vw5rwr3dlzjzfdp3bj628i6144024b8"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)))
+    ;; No "test" command supplied to setuptools, so unless there's another way
+    ;; to run tests, we're skipping them!
+    (arguments '(#:tests? #f))
+    (home-page "http://pythonhosted.org/blinker/";)
+    (synopsis "Fast, simple object-to-object and broadcast signaling")
+    (description
+     "Blinker provides a fast dispatching system that allows any number of
+interested parties to subscribe to events, or \"signals\".")
+    (license license:expat)))
+
+(define-public python2-blinker
+  (package-with-python2 python-blinker))
+
 (define-public python-scikit-learn
   (package
     (name "python-scikit-learn")



reply via email to

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