diff options
author | Vinicius Monego <monego@posteo.net> | 2023-05-20 15:44:04 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2023-06-25 10:43:22 -0300 |
commit | 4d9d673a863b51416c852705f5e232168c946723 (patch) | |
tree | bbcfe4aac04bca0b5b15a1baee85fed0e7cff10b /gnu/packages/python-xyz.scm | |
parent | 514856e1aa7875ed3aea4c4f7d749e3dca598e0c (diff) | |
download | guix-4d9d673a863b51416c852705f5e232168c946723.tar.gz |
gnu: Add python-fastprogress.
* gnu/packages/python-xyz.scm (python-fastprogress): New variable.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1ad722f89e..7843dc7c33 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3070,6 +3070,32 @@ to the terminal in real time but is also available to the Python program for additional processing.") (license license:expat))) +(define-public python-fastprogress + (package + (name "python-fastprogress") + (version "1.0.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fastai/fastprogress") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "01h8f786wgmmd3fj98wk1n5id67nsp19gs8bbgims04aciwhvj21")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f ;there are no tests + #:phases #~(modify-phases %standard-phases + ;; XXX: Fails with: "In procedure utime: No such file + ;; or directory". + (delete 'ensure-no-mtimes-pre-1980)))) + (home-page "https://github.com/fastai/fastprogress") + (synopsis "Progress bar for Jupyter Notebook and console") + (description + "Fastprogress is a progress bar for Jupyter Notebook and console.") + (license license:asl2.0))) + (define-public python-case (package (name "python-case") |