[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
37/37: gnu: python-tqdm: Update to 4.43.0.
From: |
guix-commits |
Subject: |
37/37: gnu: python-tqdm: Update to 4.43.0. |
Date: |
Mon, 16 Mar 2020 10:46:31 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 8317c89aa3573f4a597fc0b2eaf08769239c5e37
Author: Marius Bakke <address@hidden>
AuthorDate: Mon Mar 16 14:51:20 2020 +0100
gnu: python-tqdm: Update to 4.43.0.
* gnu/packages/python-xyz.scm (python-tqdm): Update to 4.43.0.
[arguments]: New field.
[native-inputs]: Remove PYTHON-FLAKE8 and PYTHON-COVERAGE.
[properties]: Remove.
(python2-tqdm): Use PACKAGE-WITH-PYTHON2.
---
gnu/packages/python-xyz.scm | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index be02b03..c6d3e2c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14496,34 +14496,35 @@ ignoring formatting changes.")
(define-public python-tqdm
(package
(name "python-tqdm")
- (version "4.19.6")
+ (version "4.43.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tqdm" version))
(sha256
(base32
- "1pw0ngm0zn9papdmkwipi3yih5c3di6d0w849bdmrraq4d2d9h2y"))))
+ "093v4c2x5hpigv47zvyxl8wh10y2yd2gvz3l9vchn0zsp8hv2pzk"))))
(build-system python-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (add-installed-pythonpath inputs outputs)
+ ;; This invokation is taken from tox.ini.
+ (invoke "nosetests" "--ignore-files=\"test_perf.py\""
+ "-d" "-v" "tqdm/"))))))
(native-inputs
- `(("python-flake8" ,python-flake8)
- ("python-nose" ,python-nose)
- ("python-coverage" ,python-coverage)))
+ `(("python-nose" ,python-nose)))
(home-page "https://github.com/tqdm/tqdm")
(synopsis "Fast, extensible progress meter")
(description
"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 `(("python2-functools32" ,python2-functools32)
- ,@(package-native-inputs tqdm))))))
+ (package-with-python2 python-tqdm))
(define-public python-pkginfo
(package
- 21/37: gnu: Remove python2-oslo.config., (continued)
- 21/37: gnu: Remove python2-oslo.config., guix-commits, 2020/03/16
- 26/37: gnu: python-gevent: Update to 1.4.0., guix-commits, 2020/03/16
- 33/37: gnu: python-zope-configuration: Update to 4.3.1., guix-commits, 2020/03/16
- 24/37: gnu: Remove python2-gitdb., guix-commits, 2020/03/16
- 27/37: gnu: python-zope-interface: Update to 4.7.2., guix-commits, 2020/03/16
- 28/37: gnu: python-zope-exceptions: Update to 4.3., guix-commits, 2020/03/16
- 30/37: gnu: python-zope-testrunner: Update to 5.1., guix-commits, 2020/03/16
- 31/37: gnu: python-zope-i18nmessageid: Update to 5.0.1., guix-commits, 2020/03/16
- 35/37: gnu: python-zope-location: Update to 4.2., guix-commits, 2020/03/16
- 36/37: gnu: python-zope-security: Update to 5.1.0., guix-commits, 2020/03/16
- 37/37: gnu: python-tqdm: Update to 4.43.0.,
guix-commits <=
- 19/37: gnu: Remove python2-oslo.serialization., guix-commits, 2020/03/16
- 34/37: gnu: python-zope-proxy: Update to 4.3.4., guix-commits, 2020/03/16
- 32/37: gnu: python-zope-schema: Update to 5.0.1., guix-commits, 2020/03/16
- 11/37: gnu: python2-flake8: Add missing propagated dependency., guix-commits, 2020/03/16
- 25/37: gnu: python-kivy: Remove unused input., guix-commits, 2020/03/16
- 29/37: gnu: python-zope-testing: Update to 4.7., guix-commits, 2020/03/16