diff options
author | 宋文武 <iyzsong@gmail.com> | 2016-06-27 20:32:36 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-06-27 22:17:21 +0800 |
commit | c18899e8cfa7dc3b5a9c0ff7d7f903e2c30a75f1 (patch) | |
tree | 490eb7b489b1399c9792abdc79e53eca8b51716e | |
parent | 4591217058c306ed9c8dc79a8feebfe6a97da751 (diff) | |
download | patches-c18899e8cfa7dc3b5a9c0ff7d7f903e2c30a75f1.tar patches-c18899e8cfa7dc3b5a9c0ff7d7f903e2c30a75f1.tar.gz |
gnu: python-kazoo: Rearrange inputs.
* gnu/packages/python.scm (python-kazoo)[native-inputs]: Move
six ...
[propagated-inputs]: to here.
-rw-r--r-- | gnu/packages/python.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 888e1c30ed..e30166c133 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 |