[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/13: gnu: Add python-entrypoint2.
From: |
guix-commits |
Subject: |
10/13: gnu: Add python-entrypoint2. |
Date: |
Sat, 8 May 2021 05:28:55 -0400 (EDT) |
lbraun pushed a commit to branch master
in repository guix.
commit 2137cc44ba5321e21dfb0dde60612bf5cde3a4df
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Tue Apr 20 05:22:41 2021 +0000
gnu: Add python-entrypoint2.
* gnu/packages/python-xyz.scm (python-entrypoint2): New variable.
---
gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index dce50d6..f4b3a60 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15197,6 +15197,31 @@ etc.")
"@code{easyprocess} is an easy to use Python subprocess interface.")
(license license:bsd-3)))
+(define-public python-entrypoint2
+ (package
+ (name "python-entrypoint2")
+ (version "0.2.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "entrypoint2" version))
+ (sha256
+ (base32 "1qyxq54r2fbh09ab5sffbxajy8arbk6czxz5lq3ccr9qrypw6w27"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:test-target "pytest"))
+ (native-inputs
+ `(("python-easyprocess" ,python-easyprocess)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-runner" ,python-pytest-runner)))
+ (home-page "https://github.com/ponty/entrypoint2")
+ (synopsis "Command-line interface for Python modules")
+ (description
+ "@code{entrypoint2} is an easy to use command-line interface for Python
+modules based on @code{argparse}. It translates function signature and
+documentation to argparse configuration.")
+ (license license:bsd-3)))
+
(define-public python-stem
(package
(name "python-stem")
- branch master updated (a9a67da -> dd05a93), guix-commits, 2021/05/08
- 01/13: gnu: Add python-textdistance., guix-commits, 2021/05/08
- 02/13: gnu: Add python-three-merge., guix-commits, 2021/05/08
- 03/13: gnu: Add python-pyls-black., guix-commits, 2021/05/08
- 04/13: gnu: Add python-tinycss., guix-commits, 2021/05/08
- 05/13: gnu: Add python-qstylizer., guix-commits, 2021/05/08
- 08/13: gnu: Add python-qtsass., guix-commits, 2021/05/08
- 07/13: gnu: Add python-pytest-qt., guix-commits, 2021/05/08
- 10/13: gnu: Add python-entrypoint2.,
guix-commits <=
- 11/13: gnu: Add python-pyvirtualdisplay., guix-commits, 2021/05/08
- 06/13: gnu: python-language-server: Enable tests., guix-commits, 2021/05/08
- 12/13: gnu: Add python-pytest-xvfb., guix-commits, 2021/05/08
- 13/13: gnu: python-language-server: Relax dependency versions., guix-commits, 2021/05/08
- 09/13: gnu: Add python-easyprocess., guix-commits, 2021/05/08