me
/
guix
Archived
1
0
Fork 0

gnu: Add python-progressbar2.

* gnu/packages/python-xyz.scm (python-progressbar2): New variable.
master
Ricardo Wurmus 2020-06-23 16:45:05 +02:00
parent 2537a7bf26
commit e8f2ddbb23
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 32 additions and 0 deletions

View File

@ -9883,6 +9883,38 @@ concurrent.futures package from Python 3.2")
("python2-pytest" ,python2-pytest)
,@(package-native-inputs promise))))))
(define-public python-progressbar2
(package
(name "python-progressbar2")
(version "3.51.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "progressbar2" version))
(sha256
(base32
"0b2v3mim90rmfvixkaniz2qrs650sk230rzgd5zhcjfldmlqgxpc"))))
(build-system python-build-system)
(propagated-inputs
`(("python-six" ,python-six)
("python-utils" ,python-utils)))
(native-inputs
`(("python-flake8" ,python-flake8)
("python-freezegun" ,python-freezegun)
("python-pycodestyle" ,python-pycodestyle)
("python-pytest" ,python-pytest)
("python-pytest-cache" ,python-pytest-cache)
("python-pytest-cov" ,python-pytest-cov)
("python-pytest-flakes" ,python-pytest-flakes)
("python-pytest-pep8" ,python-pytest-pep8)
("python-sphinx" ,python-sphinx)))
(home-page "https://github.com/WoLpH/python-progressbar")
(synopsis "Text progress bar library for Python")
(description
"This package provides a Python progressbar library to provide
visual (yet text based) progress to long running operations.")
(license license:bsd-3)))
(define-public python-progressbar33
(package
(name "python-progressbar33")