mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-domain-connect-dyndns.
It was preoposed in #48514 on <2021-05-19>. * gnu/packages/python-web.scm (python-domain-connect-dyndns): New variable. Change-Id: I3a31379b4b4ed58c3503d6a8d5fd5a960702bec0 Reviewed-by: Xinglu Chen <public@yoctocell.xyz> Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
26b022deb9
commit
9e378b7c4e
1 changed files with 34 additions and 0 deletions
|
@ -357,6 +357,40 @@ caching server.")
|
||||||
Async mode for @url{https://domainconnect.org/, Domain Connect protocol}.")
|
Async mode for @url{https://domainconnect.org/, Domain Connect protocol}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-domain-connect-dyndns
|
||||||
|
(package
|
||||||
|
(name "python-domain-connect-dyndns")
|
||||||
|
(version "0.0.9")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "domain-connect-dyndns" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0srrblcb64bp7k5cqqivx4kykqdkmmzmspxwv66vix9k7wxdwqzx"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; Check and sanity-check phases require /etc/resolv.conf, which is not
|
||||||
|
;; present in container.
|
||||||
|
#:tests? #f
|
||||||
|
#:phases #~(modify-phases %standard-phases (delete 'sanity-check))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-dnspython
|
||||||
|
python-domain-connect
|
||||||
|
python-requests
|
||||||
|
python-validators))
|
||||||
|
(home-page "https://github.com/Domain-Connect/DomainConnectDDNS-Python")
|
||||||
|
(synopsis "Domain Connect Dynamic DNS in Python")
|
||||||
|
;; Project lacks meaningful description in README, see
|
||||||
|
;; <https://github.com/Domain-Connect/DomainConnectDDNS-Python/issues/43>.
|
||||||
|
(description
|
||||||
|
"Python client library for Dynamic DNS using
|
||||||
|
@url{https://www.domainconnect.org/, Domain Connect} protocol.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-eventlet
|
(define-public python-eventlet
|
||||||
(package
|
(package
|
||||||
(name "python-eventlet")
|
(name "python-eventlet")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue