From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: Re: [PATCH 07/10] gnu: Add python-rauth. Date: Thu, 3 Dec 2015 21:26:51 +0200 Message-ID: <20151203212651.7d9d73eb@debian-netbook> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> <1449153811-32039-8-git-send-email-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/yOpNqQOCMWB1NDO1pLkVHfg"; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41031) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4ZWx-0003QH-Pg for guix-devel@gnu.org; Thu, 03 Dec 2015 14:27:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4ZWt-0006e1-NR for guix-devel@gnu.org; Thu, 03 Dec 2015 14:27:03 -0500 Received: from flashner.co.il ([178.62.234.194]:35923) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4ZWt-0006b6-Cd for guix-devel@gnu.org; Thu, 03 Dec 2015 14:26:59 -0500 Received: from debian-netbook (85.65.229.31.dynamic.barak-online.net [85.65.229.31]) by flashner.co.il (Postfix) with ESMTPSA id 86BA940382 for ; Thu, 3 Dec 2015 19:26:57 +0000 (UTC) In-Reply-To: <1449153811-32039-8-git-send-email-efraim@flashner.co.il> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --Sig_/yOpNqQOCMWB1NDO1pLkVHfg Content-Type: multipart/mixed; boundary="MP_/rTjW6Yy6Z+i55OuMoc64Sca" --MP_/rTjW6Yy6Z+i55OuMoc64Sca Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thu, 3 Dec 2015 16:43:28 +0200 Efraim Flashner wrote: > * gnu/packages/python.scm (python-rauth, python2-rauth): New variables. > --- > gnu/packages/python.scm | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) >=20 > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 21aa8fa..5c71aac 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -6064,6 +6064,39 @@ automatically detect a wide range of file encoding= s.") > (define-public python2-chardet > (package-with-python2 python-chardet)) > =20 > +(define-public python-rauth > + (package > + (name "python-rauth") > + (version "0.7.2") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "rauth" version)) > + (sha256 > + (base32 > + "00pq7zw429hhza9c0qzxiqp77m653jv09z92nralnmzwdf6pzicf")))) > [...] messed up this part of the indentation, new version attached --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --MP_/rTjW6Yy6Z+i55OuMoc64Sca Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-gnu-Add-python-rauth.patch =46rom 75fcd98b28693975f17d8d6d03f19481acbbd210 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 22 Nov 2015 22:43:51 +0200 Subject: [PATCH 1/4] gnu: Add python-rauth. * gnu/packages/python.scm (python-rauth, python2-rauth): New variables. --- gnu/packages/python.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 21aa8fa..cececfb 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6064,6 +6064,39 @@ automatically detect a wide range of file encodings.= ") (define-public python2-chardet (package-with-python2 python-chardet)) =20 +(define-public python-rauth + (package + (name "python-rauth") + (version "0.7.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rauth" version)) + (sha256 + (base32 + "00pq7zw429hhza9c0qzxiqp77m653jv09z92nralnmzwdf6pzicf")))) + (build-system python-build-system) + (arguments + `(#:test-target "check")) + (native-inputs + `(("python-setuptools" ,python-setuptools))) + (inputs + `(("python-requests" ,python-requests))) + (home-page "https://github.com/litl/rauth") + (synopsis "Python library for OAuth 1.0/a, 2.0, and Ofly") + (description + "Rauth is a Python library for OAuth 1.0/a, 2.0, and Ofly. It also +provides service wrappers for convenient connection initialization and +authenticated session objects providing things like keep-alive.") + (license license:expat))) + +(define-public python2-rauth + (let ((rauth (package-with-python2 python-rauth))) + (package (inherit rauth) + (native-inputs + `(("python2-unittest2", python2-unittest2) + ,@(package-native-inputs rauth)))))) + (define-public python2-futures (package (name "python2-futures") --=20 2.6.2 --MP_/rTjW6Yy6Z+i55OuMoc64Sca-- --Sig_/yOpNqQOCMWB1NDO1pLkVHfg Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCgAGBQJWYJd7AAoJEPTB05F+rO6T36MP/i17Cusa1xfgvNBm3v15wNY/ zGkE3vVyXfOEQE1X/nv7DKyB7z8AIIda5eCQ2fr99oLl5WoXahffVziSqCNyi1Gg no3EuFlnWG+1+yJ5UJW8kEbRVMklk6urRbTj9hIad8N5diTMqa7ynRmrKCNOB4jT YCQ8xAtZoUOND5L+DBL7mpjiED28Mb2jDpy4JaEe/hKyaAo6ddkUPMeuVW7L7rIA TuDTfeN7WJu6MuuWDohHWUQjL2WAf14zOge4lxW/KyUS8u0pbBRXnyc5BdVJiGNA 5/SgS2Xs1K9eR+sJuwhP4N0gMgYidTcUVMtUqxHNqnCcmgO+OwdOdHwHoJhVcG3k Mz9dZS/9q6gQAJa3NdBPi/AiO6qSCS7SnRb01+JMZG+kVi9OEyHM/abZSLtC0b9Q LcwUylsI4SBIH4VEicIJRMfTf5KOxSS8sGGa6xaEalUJdrjQNPdxA9GkTMiTsfDk I8707eihOxVDtITnV3F5AUHUMtj7OFPpRiOQzV1MSFnfKwVDTmHV35OZxsFx1wzE wvkyNkIwxR3IhzZ4kCRXGrR9EkS1+IM1Y0EH0xFLaRGItnvlfj8g2xIODKQJ37E/ iKmLpiHjm6A3uusaZ/LhIC0OWu3cudZvP2yoMFnzvxr+13+uGiSloLPAsa7vgXJc MiEDi5D0jAoRjuTySjwR =TREQ -----END PGP SIGNATURE----- --Sig_/yOpNqQOCMWB1NDO1pLkVHfg--