diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-02-14 00:46:30 -0500 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2021-02-16 17:11:27 +0800 |
commit | c896d4655dd0fdab86d7f6b15379eeec8cdf510d (patch) | |
tree | 529fed1726a5aaccbbf226f813ecc451fbef2b51 /gnu/packages/networking.scm | |
parent | c10945eae5d29ac34145dbcb10b73b34d03bd532 (diff) |
gnu: gandi.cli: Update to 1.6.
* gnu/packages/networking.scm (gandi.cli): Update to 1.6.
[native-inputs]: Add python-pytest.
[propagated-inputs]: Add openssh.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu/packages/networking.scm')
-rw-r--r-- | gnu/packages/networking.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 5e0022ac76..804d4dce0c 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1454,13 +1454,13 @@ round-robin fashion.") (define-public gandi.cli (package (name "gandi.cli") - (version "1.5") + (version "1.6") (source (origin (method url-fetch) (uri (pypi-uri name version)) (sha256 - (base32 "110wc9zgxsrvw4yzp21p0ian5lcf7vhcpxhnmsc4fg9pzl2bwxd5")))) + (base32 "1h36jahbp7273wn3yd747kbiwjc0bm3sja67bcxdsd54ln0vyndg")))) (build-system python-build-system) (arguments `(#:phases @@ -1484,8 +1484,11 @@ round-robin fashion.") #t)))))) (native-inputs `(("python-docutils" ,python-docutils) ; for rst2man.py + ("python-pytest" ,python-pytest) ("python-pytest-cov" ,python-pytest-cov) ("python-tox" ,python-tox))) + (propagated-inputs + `(("openssh" ,openssh))) ; used by gandi/cli/modules/iass.py (inputs `(("openssl" ,openssl) ("python-click" ,python-click) |