guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add python-click-default-group.


From: guix-commits
Subject: branch master updated: gnu: Add python-click-default-group.
Date: Sat, 13 Mar 2021 06:17:19 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e5d526d  gnu: Add python-click-default-group.
e5d526d is described below

commit e5d526d758f0887d96b12b56758dea2c027a8729
Author: LibreMiami <packaging-guix@libremiami.org>
AuthorDate: Sat Mar 6 02:50:53 2021 +0000

    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>
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 361626a..6efd1c1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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 @@ applications.")
     (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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]