[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64896] [PATCH 7/8] gnu: Add python-milc.
From: |
Jean-Pierre De Jesus DIAZ |
Subject: |
[bug#64896] [PATCH 7/8] gnu: Add python-milc. |
Date: |
Thu, 27 Jul 2023 14:57:40 +0200 |
* gnu/packages/python-xyz.scm (python-milc): New variable.
Signed-off-by: Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com>
---
gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a6d789aacf..72f1936732 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4234,6 +4234,26 @@ (define-public python-extras
"Extras is a set of extensions to the Python standard library.")
(license license:expat)))
+(define-public python-milc
+ (package
+ (name "python-milc")
+ (version "1.6.8")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "milc" version))
+ (sha256
+ (base32
+ "1pnwdg2653lc82qsv6c0kv9qcydh2f6w5mx5l4227zy1f6kr7b52"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-appdirs python-argcomplete python-colorama
+ python-halo python-spinners))
+ (home-page "https://github.com/clueboard/milc")
+ (synopsis "Python library for command line interface programs")
+ (description "MILC is a Python library for developing command line
+interface programs. This library provides features to parse arguments,
+automatic tab-completion, color support, logging to @code{std}, etc.")
+ (license license:expat)))
+
(define-public python-mimeparse
(package
(name "python-mimeparse")
--
2.34.1
- [bug#64896] [PATCH 0/8] gnu: Add qmk., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 1/8] gnu: Add python-hid., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 2/8] gnu: Add python-spinners., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 7/8] gnu: Add python-milc.,
Jean-Pierre De Jesus DIAZ <=
- [bug#64896] [PATCH 6/8] gnu: Add python-dotty-dict., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 3/8] gnu: Add python-log-symbols., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 8/8] gnu: Add qmk., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 4/8] gnu: Add python-halo., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH 5/8] gnu: Add python-hjson., Jean-Pierre De Jesus DIAZ, 2023/07/27
- [bug#64896] [PATCH v2 0/8] gnu: Add qmk., Jean-Pierre De Jesus DIAZ, 2023/07/28