mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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.
This commit is contained in:
parent
e26e084fbb
commit
8317c89aa3
1 changed files with 13 additions and 12 deletions
|
@ -14496,34 +14496,35 @@ ignoring formatting changes.")
|
||||||
(define-public python-tqdm
|
(define-public python-tqdm
|
||||||
(package
|
(package
|
||||||
(name "python-tqdm")
|
(name "python-tqdm")
|
||||||
(version "4.19.6")
|
(version "4.43.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "tqdm" version))
|
(uri (pypi-uri "tqdm" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1pw0ngm0zn9papdmkwipi3yih5c3di6d0w849bdmrraq4d2d9h2y"))))
|
"093v4c2x5hpigv47zvyxl8wh10y2yd2gvz3l9vchn0zsp8hv2pzk"))))
|
||||||
(build-system python-build-system)
|
(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
|
(native-inputs
|
||||||
`(("python-flake8" ,python-flake8)
|
`(("python-nose" ,python-nose)))
|
||||||
("python-nose" ,python-nose)
|
|
||||||
("python-coverage" ,python-coverage)))
|
|
||||||
(home-page "https://github.com/tqdm/tqdm")
|
(home-page "https://github.com/tqdm/tqdm")
|
||||||
(synopsis "Fast, extensible progress meter")
|
(synopsis "Fast, extensible progress meter")
|
||||||
(description
|
(description
|
||||||
"Make loops show a progress bar on the console by just wrapping any
|
"Make loops show a progress bar on the console by just wrapping any
|
||||||
iterable with @code{|tqdm(iterable)|}. Offers many options to define
|
iterable with @code{|tqdm(iterable)|}. Offers many options to define
|
||||||
design and layout.")
|
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
|
(define-public python2-tqdm
|
||||||
(let ((tqdm (package-with-python2
|
(package-with-python2 python-tqdm))
|
||||||
(strip-python2-variant python-tqdm))))
|
|
||||||
(package (inherit tqdm)
|
|
||||||
(native-inputs `(("python2-functools32" ,python2-functools32)
|
|
||||||
,@(package-native-inputs tqdm))))))
|
|
||||||
|
|
||||||
(define-public python-pkginfo
|
(define-public python-pkginfo
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue