summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-05-08 08:46:20 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-08 11:06:38 +0100
commita1c57d4e521a29093eaccd36aa6137827d98bc22 (patch)
tree3aa352bc159700f5ce00fb069901e653761e38cf /gnu/packages/python-web.scm
parent4c584d80b474148a4f935fc856eb15ecc6153064 (diff)
gnu: python-docusign-esign: Move to python-web.
* gnu/packages/python-xyz.scm (python-docusign-esign): Move from here ... * gnu/packages/python-web.scm: ... to here. Change-Id: I2647c3634d18ac0536385acfc5266c6345a30891
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 97523b65547..aa11919f37b 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -32,6 +32,7 @@
32;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com> 32;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
33;;; Copyright © 2019, 2020 Tanguy Le Carrour <tanguy@bioneland.org> 33;;; Copyright © 2019, 2020 Tanguy Le Carrour <tanguy@bioneland.org>
34;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> 34;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
35;;; Copyright © 2020 Josh Marshall <josh.marshall@jax.org>
35;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com> 36;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
36;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org> 37;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
37;;; Copyright © 2020 Holger Peters <holger.peters@posteo.de> 38;;; Copyright © 2020 Holger Peters <holger.peters@posteo.de>
@@ -322,6 +323,36 @@ server process.")
322caching server.") 323caching server.")
323 (license license:expat))) 324 (license license:expat)))
324 325
326(define-public python-docusign-esign
327 (package
328 (name "python-docusign-esign")
329 (version "5.0.0")
330 (source
331 (origin
332 (method url-fetch)
333 (uri (pypi-uri "docusign-esign" version))
334 (sha256
335 (base32 "18n9szjxbmsccz4vlvsl4xa73jn0y16l0c344m83gil25v2amn69"))))
336 (build-system pyproject-build-system)
337 ;; Testing requires undocumented setup changes with network access to
338 ;; <demo.docusign.net>, and so testing is disabled here.
339 (arguments `(#:tests? #f))
340 (native-inputs
341 (list python-setuptools
342 python-wheel))
343 (propagated-inputs
344 (list python-certifi
345 python-dateutil
346 python-urllib3
347 python-pyjwt
348 python-cryptography))
349 (home-page "https://developers.docusign.com/")
350 (synopsis "DocuSign Python Client")
351 (description
352 "The Official DocuSign Python Client Library used to interact with the
353eSign REST API. Send, sign, and approve documents using this client.")
354 (license license:expat)))
355
325(define-public python-domain-connect 356(define-public python-domain-connect
326 (package 357 (package
327 (name "python-domain-connect") 358 (name "python-domain-connect")