[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: python-wsgi-intercept: Fix build failure with Python 3.5.
From: |
Leo Famulari |
Subject: |
01/04: gnu: python-wsgi-intercept: Fix build failure with Python 3.5. |
Date: |
Mon, 17 Oct 2016 17:56:46 +0000 (UTC) |
lfam pushed a commit to branch core-updates
in repository guix.
commit 8757f05046dfc2423edc0345c6da21d2e0a6257e
Author: Leo Famulari <address@hidden>
Date: Sun Oct 16 12:53:18 2016 -0400
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 e49d336..8d2195c 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)))