gnu: python2-tqdm: Depend on python2-functools32.

* gnu/packages/python-xyz.scm (python-tqdm)[properties]: Add python2-variant.
(python2-tqdm): Use 'strip-python2-variant'.
[native-inputs]: Add python2-functools32.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
Pierre Langlois 2019-10-08 14:38:32 +01:00 committed by Marius Bakke
parent d28c113f6b
commit f875d76f16
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -13746,10 +13746,15 @@ (define-public python-tqdm
"Make loops show a progress bar on the console by just wrapping any
iterable with @code{|tqdm(iterable)|}. Offers many options to define
design and layout.")
(license (list license:mpl2.0 license:expat))))
(license (list license:mpl2.0 license:expat))
(properties `((python2-variant . ,(delay python2-tqdm))))))
(define-public python2-tqdm
(package-with-python2 python-tqdm))
(let ((tqdm (package-with-python2
(strip-python2-variant python-tqdm))))
(package (inherit tqdm)
(native-inputs `(("python2-functools32" ,python2-functools32)
,@(package-native-inputs tqdm))))))
(define-public python-pkginfo
(package