iyzsong pushed a commit to branch master
in repository guix.
commit c18899e8cfa7dc3b5a9c0ff7d7f903e2c30a75f1
Author: 宋文武 <[email protected]>
Date: Mon Jun 27 20:32:36 2016 +0800
gnu: python-kazoo: Rearrange inputs.
* gnu/packages/python.scm (python-kazoo)[native-inputs]: Move
six ...
[propagated-inputs]: to here.
---
gnu/packages/python.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 888e1c3..e30166c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9191,8 +9191,9 @@ data in Python.")
(build-system python-build-system)
(arguments '(#:tests? #f)) ; XXX: needs zookeeper
(native-inputs
- `(("python-setuptools" ,python-setuptools)
- ("python-six" ,python-six)))
+ `(("python-setuptools" ,python-setuptools)))
+ (propagated-inputs
+ `(("python-six" ,python-six)))
(home-page "https://kazoo.readthedocs.org")
(synopsis "High-level Zookeeper client library")
(description