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:
Mekeor Melire 2025-02-05 21:14:43 +00:00 committed by Sharlatan Hellseher
parent 26b022deb9
commit 9e378b7c4e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -357,6 +357,40 @@ caching server.")
Async mode for @url{https://domainconnect.org/, Domain Connect protocol}.")
(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
(package
(name "python-eventlet")