guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add Docusign API Python client.


From: guix-commits
Subject: branch master updated: gnu: Add Docusign API Python client.
Date: Tue, 24 Mar 2020 15:36:54 -0400

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new b14c234  gnu: Add Docusign API Python client.
b14c234 is described below

commit b14c234c0d32216f8c2f6e6d1935c469a6b947c9
Author: Josh Marshall <address@hidden>
AuthorDate: Mon Mar 23 10:19:43 2020 -0400

    gnu: Add Docusign API Python client.
    
    * gnu/packages/python-xyz.scm (python-docusign-esign): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 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 4c71546..8463fcc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -71,6 +71,7 @@
 ;;; Copyright © 2020 sirgazil <address@hidden>
 ;;; Copyright © 2020 Sebastian Schott <address@hidden>
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
+;;; Copyright © 2020 Josh Marshall <address@hidden>
 ;;;
 ;;; 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]