nckx pushed a commit to branch master
in repository guix.
commit af029a80dd0e81be65b05ffa9a68c7ee43a62ae9
Author: Tobias Geerinckx-Rice <[email protected]>
Date: Sat Jun 30 01:58:10 2018 +0200
gnu: python2-xopen: Fix build.
* gnu/packages/python.scm (python2-xopen)[propagated-inputs]: Add
python2-bz2file.
---
gnu/packages/python.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index d4e0120..b05911d 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -10446,7 +10446,12 @@ possible on all supported Python versions.")
(license license:expat)))
(define-public python2-xopen
- (package-with-python2 python-xopen))
+ (let ((base (package-with-python2
+ (strip-python2-variant python-xopen))))
+ (package
+ (inherit base)
+ (propagated-inputs `(("python2-bz2file" ,python2-bz2file)
+ ,@(package-propagated-inputs base))))))
(define-public python2-cheetah
(package