gnu: Add python-click-default-group.
* /gnu/packages/python-xyz.scm (python-click-default-group): New variable. Co-authored-by: Raghav Gururajan <rg@raghavgururajan.name> Co-authored-by: jgart <jgart@dismail.de> Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
339200699f
commit
e5d526d758
1 changed files with 22 additions and 0 deletions
|
@ -98,6 +98,7 @@
|
|||
;;; Copyright © 2020 EuAndreh <eu@euandre.org>
|
||||
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2021 Ellis Kenyő <me@elken.dev>
|
||||
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -10851,6 +10852,27 @@ (define-public python-click-log
|
|||
(home-page "https://github.com/click-contrib/click-log")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-click-default-group
|
||||
(package
|
||||
(name "python-click-default-group")
|
||||
(version "1.2.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "click-default-group" version))
|
||||
(sha256
|
||||
(base32
|
||||
"015r78jk8gznfw0dphpwaqcx5mhg5822b55w5xbb6i7sin70wmnr"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; no target
|
||||
(propagated-inputs
|
||||
`(("python-click" ,python-click)))
|
||||
(synopsis "Extends click.Group")
|
||||
(description "This package extends click.Group to invoke a command without
|
||||
explicit subcommand name.")
|
||||
(home-page "https://github.com/click-contrib/click-default-group")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-structlog
|
||||
(package
|
||||
(name "python-structlog")
|
||||
|
|
Loading…
Reference in a new issue