diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-08 08:46:20 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-08 11:06:38 +0100 |
commit | a1c57d4e521a29093eaccd36aa6137827d98bc22 (patch) | |
tree | 3aa352bc159700f5ce00fb069901e653761e38cf /gnu/packages/python-web.scm | |
parent | 4c584d80b474148a4f935fc856eb15ecc6153064 (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.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 97523b6554..aa11919f37 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -32,6 +32,7 @@ ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2019, 2020 Tanguy Le Carrour <tanguy@bioneland.org> ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> +;;; Copyright © 2020 Josh Marshall <josh.marshall@jax.org> ;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com> ;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org> ;;; Copyright © 2020 Holger Peters <holger.peters@posteo.de> @@ -322,6 +323,36 @@ server process.") caching server.") (license license:expat))) +(define-public python-docusign-esign + (package + (name "python-docusign-esign") + (version "5.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "docusign-esign" version)) + (sha256 + (base32 "18n9szjxbmsccz4vlvsl4xa73jn0y16l0c344m83gil25v2amn69")))) + (build-system pyproject-build-system) + ;; Testing requires undocumented setup changes with network access to + ;; <demo.docusign.net>, and so testing is disabled here. + (arguments `(#:tests? #f)) + (native-inputs + (list python-setuptools + python-wheel)) + (propagated-inputs + (list python-certifi + python-dateutil + python-urllib3 + python-pyjwt + python-cryptography)) + (home-page "https://developers.docusign.com/") + (synopsis "DocuSign Python Client") + (description + "The Official DocuSign Python Client Library used to interact with the +eSign REST API. Send, sign, and approve documents using this client.") + (license license:expat))) + (define-public python-domain-connect (package (name "python-domain-connect") |