From 5e517e9b982b76ee7708def964db25eec19553ee Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 26 Apr 2018 20:08:13 +0200 Subject: gnu: python-html5-parser: Update to 0.4.5. * gnu/packages/python-web.scm (python-html5-parser): Update to 0.4.5. --- gnu/packages/python-web.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index d15ad92a56..e85303bb66 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -214,13 +214,13 @@ (define-public python2-html5lib-0.9 (define-public python-html5-parser (package (name "python-html5-parser") - (version "0.4.4") + (version "0.4.5") (source (origin (method url-fetch) (uri (pypi-uri "html5-parser" version)) (sha256 (base32 - "1d8sxhl41ffh7qlk7wlsy17xw6slzx5v1yna9s72wx5qrpaa3wxr")))) + "01mx33sx4dhl4kj6wc48nj6jz7ry60rkhjv0s6k8h5xmjf5yy0x9")))) (build-system python-build-system) (native-inputs `(("pkg-config" ,pkg-config))) -- cgit v1.2.3 From ebf09e77dc582294b040deb6369cb720dce6e7c9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 26 Apr 2018 20:49:54 +0200 Subject: gnu: python-ndg-httpsclient: Update to 0.5.0. * gnu/packages/python-web.scm (python-ndg-httpsclient): Update to 0.5.0. --- gnu/packages/python-web.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index e85303bb66..53a9d3c2f3 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -998,13 +998,13 @@ (define-public python2-zope-component (define-public python-ndg-httpsclient (package (name "python-ndg-httpsclient") - (version "0.4.4") + (version "0.5.0") (source (origin (method url-fetch) (uri (pypi-uri "ndg_httpsclient" version)) (sha256 (base32 - "0sl5ak1r1xil9ms0a9fh9fm6ncml65kgnjpjfic9dhnaimwx997v")))) + "12q8rjvsvjphj6lvvcka2izdjr36a5lgkygajwx6p4wh0x1za2f0")))) (build-system python-build-system) (arguments '(;; The tests appear to require networking. -- cgit v1.2.3 From e3e74e40227bdf3e47077a5d32665f3e44bfa186 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 26 Apr 2018 22:00:15 +0200 Subject: gnu: python2-ndg-httpsclient: Fix build. This might be a follow-up to a39cc016329f1f490ac7629fa81c9b686e7b0f4e from 2016, which would be neat. * gnu/packages/python-web.scm (python2-ndg-httpsclient)[arguments]: Use SUBSTITUTE-KEYWORD-ARGUMENTS to still skip tests. --- gnu/packages/python-web.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 53a9d3c2f3..6e8d9ab954 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -44,6 +44,7 @@ (define-module (gnu packages python-web) #: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 @@ (define-public python-ndg-httpsclient (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))))) -- cgit v1.2.3