iyzsong pushed a commit to branch master
in repository guix.
commit bbcd729791eebe3dc3888eaf2b054d8a62842ef9
Author: 宋文武 <[email protected]>
Date: Mon Jun 27 20:41:52 2016 +0800
gnu: python-fake-factory: Rearrange inputs.
* gnu/packages/python.scm (python-fake-factory)[native-inputs]: Move
python-dateutil-2, python-six ...
[propagated-inputs]: to here.
---
gnu/packages/python.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 7db8a8f..8decf9a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9551,13 +9551,14 @@ parsing UK postcodes.")
(delete-file "faker/tests/ne_np/__init__.py")
#t)))))
(native-inputs
- `(("python-dateutil" ,python-dateutil-2)
- ("python-setuptools" ,python-setuptools)
- ("python-six" ,python-six)
+ `(("python-setuptools" ,python-setuptools)
;; For testing
("python-email-validator" ,python-email-validator)
("python-mock" ,python-mock)
("python-ukpostcodeparser" ,python-ukpostcodeparser)))
+ (propagated-inputs
+ `(("python-dateutil" ,python-dateutil-2)
+ ("python-six" ,python-six)))
(home-page "http://github.com/joke2k/faker")
(synopsis "Python package that generates fake data")
(description