[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63619] [PATCH v2 7/9] gnu: Add python-fastprogress.
From: |
Vinicius Monego |
Subject: |
[bug#63619] [PATCH v2 7/9] gnu: Add python-fastprogress. |
Date: |
Fri, 9 Jun 2023 03:49:39 +0000 |
* gnu/packages/python-xyz.scm (python-fastprogress): New variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index efac1130a9..7798bf20ce 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3041,6 +3041,32 @@ (define-public python-capturer
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")
--
2.34.1
- [bug#63619] [PATCH v2 1/9] gnu: Add python-vega-datasets., Vinicius Monego, 2023/06/08
- [bug#63619] [PATCH v2 3/9] gnu: Add python-einops., Vinicius Monego, 2023/06/08
- [bug#63619] [PATCH v2 2/9] gnu: Add python-altair., Vinicius Monego, 2023/06/08
- [bug#63619] [PATCH v2 5/9] gnu: Add python-xarray-einstats., Vinicius Monego, 2023/06/08
- [bug#63619] [PATCH v2 4/9] gnu: python-xarray: Update to 2023.5.0., Vinicius Monego, 2023/06/08
- [bug#63619] [PATCH v2 6/9] gnu: Add python-arviz., Vinicius Monego, 2023/06/08
- [bug#63619] [PATCH v2 7/9] gnu: Add python-fastprogress.,
Vinicius Monego <=
- [bug#63619] [PATCH v2 8/9] gnu: Add python-pytensor., Vinicius Monego, 2023/06/08
- [bug#63619] [PATCH v2 9/9] gnu: Add python-pymc., Vinicius Monego, 2023/06/08