diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-03-20 14:13:05 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-03-20 14:13:05 +0100 |
commit | dc7e07c9b9780883a462c5973cd2ecad06fdb4ae (patch) | |
tree | 14d185abfdd092a470e72ea27a3dad879145fb76 /gnu/packages/python.scm | |
parent | 616446ffbf9af9e8e5df0ef40c4e33dba9e25152 (diff) | |
parent | dbc75dadb54dd0e6b3a125949c26aadfa3bff4ca (diff) | |
download | guix-dc7e07c9b9780883a462c5973cd2ecad06fdb4ae.tar.gz |
Merge branch 'staging'
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 05d3390604..76b5460f63 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5488,7 +5488,7 @@ complexity of Python source code.") (package (inherit base) (propagated-inputs `(("python2-configparser" ,python2-configparser) - ("python2-enum" ,python2-enum) + ("python2-enum34" ,python2-enum34) ,@(package-propagated-inputs base)))))) ;; python-hacking requires flake8 <2.6.0. @@ -12101,18 +12101,10 @@ ignoring formatting changes.") "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)) - (properties `((python2-variant . ,(delay python2-tqdm)))))) + (license (list license:mpl2.0 license:expat)))) (define-public python2-tqdm - (let ((tqdm (package-with-python2 - (strip-python2-variant python-tqdm)))) - (package - (inherit tqdm) - (native-inputs - ;; FIXME: This should be propagated from python2-flake8 instead. - `(("python2-enum34" ,python2-enum34) - ,@(package-native-inputs tqdm)))))) + (package-with-python2 python-tqdm)) (define-public python-pkginfo (package |