~ruther/guix-local

3ea2eaa8f35059ae64004d224992ee53a135cc80 — Efraim Flashner 8 years ago 87cd1f5
gnu: python-efl: Update to 1.20.0.

* gnu/packages/enlightenment.scm (python-efl): Update to 1.20.0.
[source]: Add alternate source uri.
[arguments]: Enable tests.
1 files changed, 7 insertions(+), 8 deletions(-)

M gnu/packages/enlightenment.scm
M gnu/packages/enlightenment.scm => gnu/packages/enlightenment.scm +7 -8
@@ 286,14 286,17 @@ embedded systems.")
(define-public python-efl
  (package
    (name "python-efl")
    (version "1.19.0")
    (version "1.20.0")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "python-efl" version))
        (uri (list
               (pypi-uri "python-efl" version)
               (string-append "http://download.enlightenment.org/rel/bindings/"
                              "python/python-efl-" version ".tar.gz")))
        (sha256
         (base32
          "0l0f9bv1134qh5376p5asycncidrhp8hdb6qwd8ybr1a61q9zq67"))))
          "1680pgpf501nhbc9arm0nfj6rpcw17aryh0pgmmmszxlgpifpdzy"))))
    (build-system python-build-system)
    (arguments
     '(#:phases


@@ 312,11 315,7 @@ embedded systems.")
          (lambda _
            ;; Some tests require write access to HOME.
            (setenv "HOME" "/tmp")
            #t)))
       ;; FIXME: Some tests require a running D-Bus server or a network
       ;; connection and should be disabled. Other test failures looks
       ;; legitimate. Disabled for now, needs work!
       #:tests? #f))
            #t)))))
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("python-cython" ,python-cython)))