mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 10:55:23 -05:00
gnu: Add python-tqdm.
* gnu/packages/python.scm (python-tqdm, python2-tqdm): New variables.
This commit is contained in:
parent
cf47e34e62
commit
b84ef9e224
1 changed files with 29 additions and 0 deletions
|
@ -16352,3 +16352,32 @@ (define-public python-nose-timer
|
|||
|
||||
(define-public python2-nose-timer
|
||||
(package-with-python2 python-nose-timer))
|
||||
|
||||
(define-public python-tqdm
|
||||
(package
|
||||
(name "python-tqdm")
|
||||
(version "4.15.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "tqdm" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0lwrmby8qz23gvqwkpivfrv4q8nfh90cz9ml6slwvwmcxxsdrhbf"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-flake8" ,python-flake8)
|
||||
("python-nose" ,python-nose)
|
||||
("python-nose-timer" ,python-nose-timer)
|
||||
("python-coverage" ,python-coverage)
|
||||
("python-virtualenv" ,python-virtualenv)))
|
||||
(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))))
|
||||
|
||||
(define-public python2-tqdm
|
||||
(package-with-python2 python-tqdm))
|
||||
|
|
Loading…
Reference in a new issue