mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: python-pycurl: Fix FTBFS from 7b84410046
.
* gnu/packages/python-web.scm (python-pycurl)[arguments]: Add phase 'configure-tls-backend'.
This commit is contained in:
parent
68f2e55206
commit
60667159d3
1 changed files with 9 additions and 1 deletions
|
@ -443,7 +443,15 @@ (define-public python-pycurl
|
|||
(arguments
|
||||
;; The tests attempt to access external web servers, so we cannot run
|
||||
;; them. Furthermore, they are skipped altogether when using Python 2.
|
||||
'(#:tests? #f))
|
||||
'(#:tests? #f
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-before 'build 'configure-tls-backend
|
||||
(lambda _
|
||||
;; XXX: PycURL fails to automatically determine which TLS
|
||||
;; backend to use when cURL is built with --disable-static.
|
||||
;; See setup.py and <https://github.com/pycurl/pycurl/pull/147>.
|
||||
(setenv "PYCURL_SSL_LIBRARY" "gnutls")
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("python-nose" ,python-nose)
|
||||
("python-bottle" ,python-bottle)))
|
||||
|
|
Loading…
Reference in a new issue