[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42682] [PATCH v3 5/9] gnu: Add python-milc.
From: |
Fredrik Salomonsson |
Subject: |
[bug#42682] [PATCH v3 5/9] gnu: Add python-milc. |
Date: |
Sun, 28 May 2023 23:44:03 +0000 |
* gnu/packages/python-xyz.scm (python-milc): New variable.
---
gnu/packages/python-xyz.scm | 45 +++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5df4e30e83..9b71ba1872 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17685,6 +17685,51 @@ (define-public python-magic
the same purpose: to provide Python bindings for libmagic.")
(license license:expat)))
+(define-public python-milc
+ (package
+ (name "python-milc")
+ (version "1.6.6")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "milc" version))
+ (sha256
+ (base32
+ "007hdwp659s1wfld92pxdgjz9ijvh949wyf1cbmyzkma30vng8d4"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ (list
+ python-appdirs
+ python-argcomplete
+ python-colorama
+ python-halo
+ python-spinners))
+ (home-page "https://milc.clueboard.co/")
+ (synopsis "Opinionated Batteries-Included Python 3 CLI Framework")
+ (description "MILC is a framework for writing @acronym{CLI, Command Line
Interface}
+applications in Python 3.6+. It gives you all the features users
+expect from a modern CLI tool out of the box:
+@itemize @bullet
+@item
+CLI Argument Parsing, with or without subcommands.
+@item
+Automatic tab-completion support through argcomplete.
+@item
+Configuration file which can be overridden by CLI options.
+@item
+ANSI color support- even on Windows- with colorama.
+@item
+Logging to stderr and/or a file, with ANSI colors.
+@item
+Easy method for printing to stdout with ANSI colors
+@item
+Labeling log output with colored emoji to easily distinguish message types.
+@item
+Thread safety.
+@item
+More than 60 built-in spinners with the ability to add your own.
+@end itemize")
+ (license license:expat)))
+
(define-public s3cmd
(package
(name "s3cmd")
--
2.40.1
- [bug#42682] [PATCH v3 0/9] Add qmk-cli, Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 3/9] gnu: Add python-spinners., Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 1/9] gnu: Add python-hjson., Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 2/9] gnu: Add python-log-symbols., Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 6/9] gnu: Add python-dotty-dict., Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 9/9] gnu: Add qmk-udev-rules., Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 4/9] gnu: Add python-halo., Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 8/9] gnu: Add qmk-cli., Fredrik Salomonsson, 2023/05/28
- [bug#42682] [PATCH v3 5/9] gnu: Add python-milc.,
Fredrik Salomonsson <=
- [bug#42682] [PATCH v3 7/9] gnu: Add python-hid., Fredrik Salomonsson, 2023/05/28