From bbcd729791eebe3dc3888eaf2b054d8a62842ef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Mon, 27 Jun 2016 20:41:52 +0800 Subject: [PATCH] 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 7db8a8f8e4..8decf9a3b6 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9551,13 +9551,14 @@ (define-public python-fake-factory (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