From a1c57d4e521a29093eaccd36aa6137827d98bc22 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 8 May 2025 08:46:20 +0100 Subject: [PATCH] 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 --- gnu/packages/python-web.scm | 31 +++++++++++++++++++++++++++++++ gnu/packages/python-xyz.scm | 30 ------------------------------ 2 files changed, 31 insertions(+), 30 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 97523b65547576e8ccb97343b38a593357c115be..aa11919f37b78f04a379269b8ee73af230e9544f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -32,6 +32,7 @@ ;;; Copyright © 2019 Pierre Langlois ;;; Copyright © 2019, 2020 Tanguy Le Carrour ;;; Copyright © 2020 Jakub Kądziołka +;;; Copyright © 2020 Josh Marshall ;;; Copyright © 2020 Evan Straw ;;; Copyright © 2020 Alexandros Theodotou ;;; Copyright © 2020 Holger Peters @@ -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 + ;; , 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") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0a4646d9c7011d0834f1dd29563c2008ce795883..44d0bcf7db0aa1c741da4b9f7e477e3ce91d9660 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33020,36 +33020,6 @@ content models.") (home-page "https://geopython.github.io/OWSLib/") (license license:bsd-3))) -(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 - ;; , 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-xattr (package (name "python-xattr")