From 8757f05046dfc2423edc0345c6da21d2e0a6257e Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 16 Oct 2016 12:53:18 -0400 Subject: [PATCH] gnu: python-wsgi-intercept: Fix build failure with Python 3.5. * gnu/packages/python.scm (python-wsgi-intercept)[native-inputs]: Add python-urllib3. --- gnu/packages/python.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e49d33635a..8d2195cefc 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7439,7 +7439,8 @@ framework which enables you to test server connections locally.") (build-system python-build-system) (native-inputs `(("python-pytest" ,python-pytest) - ("python-six" ,python-six))) + ("python-six" ,python-six) + ("python-urllib3" ,python-urllib3))) (propagated-inputs `(("python-httplib2" ,python-httplib2) ("python-requests" ,python-requests)))