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.master
parent
87cd1f5c2a
commit
3ea2eaa8f3
|
@ -286,14 +286,17 @@ embedded systems.")
|
||||||
(define-public python-efl
|
(define-public python-efl
|
||||||
(package
|
(package
|
||||||
(name "python-efl")
|
(name "python-efl")
|
||||||
(version "1.19.0")
|
(version "1.20.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(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
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0l0f9bv1134qh5376p5asycncidrhp8hdb6qwd8ybr1a61q9zq67"))))
|
"1680pgpf501nhbc9arm0nfj6rpcw17aryh0pgmmmszxlgpifpdzy"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -312,11 +315,7 @@ embedded systems.")
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Some tests require write access to HOME.
|
;; Some tests require write access to HOME.
|
||||||
(setenv "HOME" "/tmp")
|
(setenv "HOME" "/tmp")
|
||||||
#t)))
|
#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))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("python-cython" ,python-cython)))
|
("python-cython" ,python-cython)))
|
||||||
|
|
Reference in New Issue