From b14c234c0d32216f8c2f6e6d1935c469a6b947c9 Mon Sep 17 00:00:00 2001 From: Josh Marshall Date: Mon, 23 Mar 2020 10:19:43 -0400 Subject: gnu: Add Docusign API Python client. * gnu/packages/python-xyz.scm (python-docusign-esign): New variable. Signed-off-by: Leo Famulari --- gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4c71546fab..8463fcc6c9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -71,6 +71,7 @@ ;;; Copyright © 2020 sirgazil ;;; Copyright © 2020 Sebastian Schott ;;; Copyright © 2020 Alexandros Theodotou +;;; Copyright © 2020 Josh Marshall ;;; ;;; This file is part of GNU Guix. ;;; @@ -18481,3 +18482,30 @@ Consortium (OGC) web service (hence OWS) interface standards, and their related content models.") (home-page "https://geopython.github.io/OWSLib/") (license license:bsd-3))) + +(define-public python-docusign-esign + (package + (name "python-docusign-esign") + (version "3.1.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "docusign_esign" version)) + (sha256 + (base32 + "01f3h03vc97syjlmqyl7xa5j90pzgmwpspc5a0gra9saynnbkx37")))) + (build-system python-build-system) + ;; Testing requires undocumented setup changes, and so testing is disabled here. + (arguments `(#:tests? #f)) + (propagated-inputs + `(("python-certifi", python-certifi) + ("python-six", python-six) + ("python-dateutil", python-dateutil) + ("python-urllib3", python-urllib3) + ("python-pyjwt", python-pyjwt) + ("python-cryptography", python-cryptography) + ("python-nose", python-nose))) + (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.") + (home-page "https://www.docusign.com/devcenter") + (license license:expat))) -- cgit v1.2.3