[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#39447] [PATCH] gnu: Add python-gandi.cli.
From: |
Amin Bandali |
Subject: |
[bug#39447] [PATCH] gnu: Add python-gandi.cli. |
Date: |
Wed, 5 Feb 2020 22:13:05 -0500 |
* gnu/packages/python-xyz.scm (python-gandi.cli): New variable.
---
gnu/packages/python-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index dcc1595446..2472890dae 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -69,6 +69,7 @@
;;; Copyright © 2019 Tanguy Le Carrour <address@hidden>
;;; Copyright © 2019 Mădălin Ionel Patrașcu <address@hidden>
;;; Copyright © 2020 Jakub Kądziołka <address@hidden>
+;;; Copyright © 2020 Amin Bandali <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -17467,3 +17468,35 @@ extensive support of PNG features. It can also read
and write Netpbm PAM
files, with a focus on its use as an intermediate format for implementing
custom PNG processing.")
(license license:expat)))
+
+(define-public python-gandi.cli
+ (package
+ (name "python-gandi.cli")
+ (version "1.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "gandi.cli" version))
+ (sha256
+ (base32
+ "110wc9zgxsrvw4yzp21p0ian5lcf7vhcpxhnmsc4fg9pzl2bwxd5"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("git" ,git)
+ ("openssh" ,openssh)
+ ("openssl" ,openssl)
+ ("python-click" ,python-click)
+ ("python-ipy" ,python-ipy)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-requests" ,python-requests)
+ ("python-setuptools" ,python-setuptools)))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-tox" ,python-tox)))
+ (home-page "https://github.com/Gandi/gandi.cli")
+ (synopsis "Gandi command line interface")
+ (description "Gandi CLI is a command line interface for creating and
+managing Gandi.net products (domains, certificates, servers, etc) using
+Gandi's public API.")
+ (license license:gpl3+)))
--
2.25.0
- [bug#39447] [PATCH] gnu: Add python-gandi.cli.,
Amin Bandali <=