mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add python-argopt.
* gnu/packages/python-xyz.scm (python-argopt): New variable.
This commit is contained in:
parent
87c9f63fce
commit
bb5a3e91e9
1 changed files with 25 additions and 0 deletions
|
@ -219,6 +219,31 @@ (define-module (gnu packages python-xyz)
|
|||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-26))
|
||||
|
||||
(define-public python-argopt
|
||||
(package
|
||||
(name "python-argopt")
|
||||
(version "0.7.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "argopt" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ybs7kkp0cpl8zn1lvf7481xhssg1bbhh5la2cjzdm5yibashyxa"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-coverage" ,python-coverage)
|
||||
("python-nose" ,python-nose)
|
||||
("python-setuptools" ,python-setuptools) ; Won't build without this.
|
||||
("python-setuptools-scm" ,python-setuptools-scm)))
|
||||
(propagated-inputs
|
||||
`(("python-toml" ,python-toml)
|
||||
("python-flake8" ,python-flake8)))
|
||||
(home-page "https://github.com/casperdcl/argopt")
|
||||
(synopsis "Generate a command-line interface from a docstring")
|
||||
(description "This package provides tools to define a command line interface
|
||||
from a docstring rather than the other way around.")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public python-colorful
|
||||
(package
|
||||
(name "python-colorful")
|
||||
|
|
Loading…
Reference in a new issue