diff options
| author | Mekeor Melire <mekeor.melire@gmail.com> | 2025-02-05 21:12:48 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-05 21:54:08 +0000 |
| commit | 26b022deb98761016e6aaf539109d62ba47d8f5b (patch) | |
| tree | 395d7df0a096390c14a251e6fd237f2caa5280a3 /gnu/packages/python-web.scm | |
| parent | 55a2baf1271d8bcd39b876642539ae5e3d9a5892 (diff) | |
gnu: Add python-domain-connect.
It was preoposed in #48514 on <2021-05-19>.
* gnu/packages/python-web.scm (python-domain-connect): New variable.
Change-Id: I479ae5a66aaf8cf1a5fcf5bb45583446000a2c64
Reviewed-by: Xinglu Chen <public@yoctocell.xyz>
Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 6f6b1dadfe2..bb31988d59c 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm | |||
| @@ -321,6 +321,42 @@ server process.") | |||
| 321 | caching server.") | 321 | caching server.") |
| 322 | (license license:expat))) | 322 | (license license:expat))) |
| 323 | 323 | ||
| 324 | (define-public python-domain-connect | ||
| 325 | (package | ||
| 326 | (name "python-domain-connect") | ||
| 327 | (version "0.0.11") | ||
| 328 | (source | ||
| 329 | (origin | ||
| 330 | (method git-fetch) ;no tests in PyPI archive | ||
| 331 | (uri (git-reference | ||
| 332 | (url "https://github.com/Domain-Connect/domainconnect_python") | ||
| 333 | (commit (string-append "v" version)))) | ||
| 334 | (file-name (git-file-name name version)) | ||
| 335 | (sha256 | ||
| 336 | (base32 "1dhqbx15h074g51mj73j9hlyvb11isjnj4s9ih5kbw1g4vf1q1jk")))) | ||
| 337 | (build-system pyproject-build-system) | ||
| 338 | (arguments | ||
| 339 | (list | ||
| 340 | ;; Check and sanity-check phases require /etc/resolv.conf, which is not | ||
| 341 | ;; present in container. | ||
| 342 | #:tests? #f | ||
| 343 | #:phases #~(modify-phases %standard-phases (delete 'sanity-check)))) | ||
| 344 | (native-inputs | ||
| 345 | (list python-setuptools | ||
| 346 | python-wheel)) | ||
| 347 | (propagated-inputs | ||
| 348 | (list python-cryptography | ||
| 349 | python-dnspython | ||
| 350 | python-future | ||
| 351 | python-publicsuffix | ||
| 352 | python-publicsuffixlist)) | ||
| 353 | (home-page "https://github.com/Domain-Connect/domainconnect_python") | ||
| 354 | (synopsis "Client library for Domain Connect protocol") | ||
| 355 | (description | ||
| 356 | "This package provides a Service Provider functionality in both Sync and | ||
| 357 | Async mode for @url{https://domainconnect.org/, Domain Connect protocol}.") | ||
| 358 | (license license:expat))) | ||
| 359 | |||
| 324 | (define-public python-eventlet | 360 | (define-public python-eventlet |
| 325 | (package | 361 | (package |
| 326 | (name "python-eventlet") | 362 | (name "python-eventlet") |
