[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/14: gnu: Add python-cliff.
From: |
guix-commits |
Subject: |
07/14: gnu: Add python-cliff. |
Date: |
Fri, 20 Nov 2020 00:25:33 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 762238c4d3210b5102dbe0b03238f74d580e1c68
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Nov 18 15:35:02 2020 -0500
gnu: Add python-cliff.
* gnu/packages/openstack.scm (python-cliff): New variable.
---
gnu/packages/openstack.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 57f1937..2239c21 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -73,6 +73,38 @@ and runs appropriate plugins against the AST nodes. Once
Bandit has finished
scanning all the files it generates a report.")
(license asl2.0)))
+(define-public python-cliff
+ (package
+ (name "python-cliff")
+ (version "3.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cliff" version))
+ (sha256
+ (base32
+ "0n8pzr0mnn9lq2mykds69ij2xrn0fsirh4ndmkx0mzydbx5niysv"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f))
+ (native-inputs
+ `(("python-pbr" ,python-pbr)))
+ (propagated-inputs
+ `(("python-cmd2" ,python-cmd2)
+ ("python-prettytable" ,python-prettytable)
+ ("python-pyparsing" ,python-pyparsing)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-bandit" ,python-bandit)
+ ("python-stevedore" ,python-stevedore)))
+ (home-page "https://opendev.org/openstack/cliff")
+ (synopsis "Framework for building command line programs")
+ (description "The @code{cliff} framework allows creating multi-level
+commands such as those of @command{subversion} and @command{git}, where the
+main program handles some basic argument parsing and then invokes a
+sub-command to do the work. It uses plugins to define sub-commands, output
+formatters, and other extensions.")
+ (license asl2.0)))
+
(define-public python-debtcollector
(package
(name "python-debtcollector")
- branch master updated (1464131 -> 8d7dfa1), guix-commits, 2020/11/20
- 01/14: gnu: python-ddt: Update to 1.4.1., guix-commits, 2020/11/20
- 04/14: gnu: python-oslotest: Update to 4.4.1., guix-commits, 2020/11/20
- 03/14: gnu: python-oslotest: Re-indent., guix-commits, 2020/11/20
- 05/14: gnu: python-bandit: Update to 1.6.2., guix-commits, 2020/11/20
- 07/14: gnu: Add python-cliff.,
guix-commits <=
- 08/14: gnu: Add python-stestr., guix-commits, 2020/11/20
- 02/14: gnu: python-stevedore: Update to 3.2.2., guix-commits, 2020/11/20
- 06/14: gnu: python-bandit: Fix indentation., guix-commits, 2020/11/20
- 09/14: gnu: python-subunit-bootstrap: Update to 1.4.0., guix-commits, 2020/11/20
- 10/14: gnu: python-hacking: Update to 4.0.0., guix-commits, 2020/11/20
- 11/14: gnu: python-oslo: Update to 3.1.1., guix-commits, 2020/11/20
- 13/14: gnu: python-oslosphinx: Update to 4.18.0., guix-commits, 2020/11/20
- 14/14: gnu: python-pillow: Update to 8.0.1., guix-commits, 2020/11/20
- 12/14: gnu: python-oslosphinx: Fix indentation., guix-commits, 2020/11/20