[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 09/11] gnu: Add python-tqdm.
From: |
Cyril Roelandt |
Subject: |
[PATCH 09/11] gnu: Add python-tqdm. |
Date: |
Mon, 11 Sep 2017 20:22:40 +0200 |
* gnu/packages/python.scm (python-tqdm, python2-tqdm): New variables.
---
gnu/packages/python.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9db16c5be..99ef1a06b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -16353,3 +16353,29 @@ ignoring formatting changes.")
(define-public python2-ipaddress
(package-with-python2 python-ipaddress))
+
+(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 for loops show a progress bar.")
+ (license license:asl2.0)))
+
+(define-public python2-tqdm
+ (package-with-python2 python-tqdm))
--
2.14.1
- [PATCH 06/11] gnu: Add python-nose-timer., (continued)