gnu: python2-ndg-httpsclient: Fix build.
This might be a follow-up to a39cc01632
from 2016, which would be neat.
* gnu/packages/python-web.scm (python2-ndg-httpsclient)[arguments]: Use
SUBSTITUTE-KEYWORD-ARGUMENTS to still skip tests.
master
parent
ae9877fed3
commit
e3e74e4022
|
@ -44,6 +44,7 @@
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages compression)
|
||||
|
@ -1024,7 +1025,9 @@ of the SSL peer.")
|
|||
(define-public python2-ndg-httpsclient
|
||||
(package (inherit python-ndg-httpsclient)
|
||||
(name "python2-ndg-httpsclient")
|
||||
(arguments `(#:python ,python-2))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments python-ndg-httpsclient)
|
||||
((#:python _) python-2)))
|
||||
(propagated-inputs
|
||||
`(("python2-pyopenssl" ,python2-pyopenssl)))))
|
||||
|
||||
|
|
Reference in New Issue