gnu: Add python-blinker.

* gnu/packages/python.scm (python-blinker, python2-blinker): New variables.
This commit is contained in:
Christopher Allan Webber 2015-07-10 16:12:47 -05:00 committed by David Thompson
parent e727ed6aef
commit 59ad30e3a8

View file

@ -2154,6 +2154,35 @@ (define-public python-feedgenerator
(define-public python2-feedgenerator (define-public python2-feedgenerator
(package-with-python2 python-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 (define-public python-scikit-learn
(package (package
(name "python-scikit-learn") (name "python-scikit-learn")