mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gandi.cli: Fix by downgrading python-click.
* gnu/packages/python-xyz.scm (python-click-7): New variable. * gnu/packages/networking.scm (gandi.cli)[inputs]: Depend on python-click-7.
This commit is contained in:
parent
f12d08c6d2
commit
b8fc3403d3
2 changed files with 14 additions and 1 deletions
|
@ -48,6 +48,7 @@
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||||
;;; Copyright © 2022 Simon South <simon@simonsouth.net>
|
;;; Copyright © 2022 Simon South <simon@simonsouth.net>
|
||||||
|
;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1655,7 +1656,7 @@ round-robin fashion.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list openssh)) ; used by gandi/cli/modules/iass.py
|
(list openssh)) ; used by gandi/cli/modules/iass.py
|
||||||
(inputs
|
(inputs
|
||||||
(list openssl python-click python-ipy python-pyyaml python-requests))
|
(list openssl python-click-7 python-ipy python-pyyaml python-requests))
|
||||||
(home-page "https://cli.gandi.net")
|
(home-page "https://cli.gandi.net")
|
||||||
(synopsis "Command-line interface to the Gandi.net Web API")
|
(synopsis "Command-line interface to the Gandi.net Web API")
|
||||||
(description
|
(description
|
||||||
|
|
|
@ -3645,6 +3645,18 @@ composable way with as little code as necessary. Its name stands for
|
||||||
with sensible defaults out of the box.")
|
with sensible defaults out of the box.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-click-7
|
||||||
|
(package (inherit python-click)
|
||||||
|
(name "python-click")
|
||||||
|
(version "7.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "click" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "06kbzd6sjfkqan3miwj9wqyddfxc2b6hi7p5s4dvqjb3gif2bdfj"))))
|
||||||
|
(arguments `())))
|
||||||
|
|
||||||
(define-public python-click-5
|
(define-public python-click-5
|
||||||
(package (inherit python-click)
|
(package (inherit python-click)
|
||||||
(name "python-click")
|
(name "python-click")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue