From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brendan Tildesley Subject: [PATCH 2/3] gnu: Add python-dropbox Date: Tue, 20 Sep 2016 21:32:23 +1000 Message-ID: References: <595814a0-d4cb-1359-a520-11412ce90fe6@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------30C34608700443F8F62E62E3" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56049) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmJHt-0008Ck-UC for guix-devel@gnu.org; Tue, 20 Sep 2016 07:32:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmJHq-0005RZ-8r for guix-devel@gnu.org; Tue, 20 Sep 2016 07:32:32 -0400 Received: from smtp7.openmailbox.org ([62.4.1.41]:55235) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmJHq-0005RJ-35 for guix-devel@gnu.org; Tue, 20 Sep 2016 07:32:30 -0400 In-Reply-To: <595814a0-d4cb-1359-a520-11412ce90fe6@openmailbox.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------30C34608700443F8F62E62E3 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit --------------30C34608700443F8F62E62E3 Content-Type: text/x-patch; name="0002-gnu-Add-python-dropbox.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0002-gnu-Add-python-dropbox.patch" >From b76af9fa56ebd49147d91e9944281ea0da55a752 Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Tue, 20 Sep 2016 20:07:31 +1000 Subject: [PATCH 2/3] gnu: Add python-dropbox. * gnu/packages/python.scm (python-dropbox): New variable. * gnu/packages/python.scm (python2-dropbox): New variable. --- gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 77fcdf6..d80e710 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -10918,3 +10918,31 @@ and runtime type checkers, static analyzers, IDEs and other tools.") (define-public python2-typing (package-with-python2 python-typing)) + +(define-public python-dropbox + (package + (name "python-dropbox") + (version "6.8.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dropbox" version)) + (sha256 + (base32 + "0csd2mgsppmfw66c8mk0309p9w05wnqisqsn0qaqmcxygq156nhi")))) + (build-system python-build-system) + (native-inputs + `(("python-setuptools" ,python-setuptools))) + (inputs + `(("python-requests" ,python-requests) + ("python-six" ,python-six) + ("python-urllib3" ,python-urllib3))) + (propagated-inputs + `(("python-typing" ,python-typing))) + (home-page "http://www.dropbox.com/developers") + (synopsis "Official Dropbox API Client") + (description "Python SDK for integrating with the Dropbox API") + (license license:expat))) + +(define-public python2-dropbox + (package-with-python2 python-dropbox)) -- 2.9.3 --------------30C34608700443F8F62E62E3--