From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: Re: [PATCH 03/10] gnu: python-requests: Update to 2.8.1. Date: Mon, 7 Dec 2015 21:26:44 +0200 Message-ID: <20151207212644.48c4a5e9@debian-netbook> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> <1449153811-32039-4-git-send-email-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/frCyNXnuyXa2rXN4j.5MdwY"; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50628) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a61Ut-0007X6-99 for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a61Ur-0005P3-03 for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:55 -0500 Received: from flashner.co.il ([178.62.234.194]:43076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a61Uq-0005Oy-LV for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:52 -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 0E7C0404D9 for ; Mon, 7 Dec 2015 19:30:51 +0000 (UTC) In-Reply-To: <1449153811-32039-4-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_/frCyNXnuyXa2rXN4j.5MdwY Content-Type: multipart/mixed; boundary="MP_/zbehsmM.EE6LfdL9HSf6lnI" --MP_/zbehsmM.EE6LfdL9HSf6lnI Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thu, 3 Dec 2015 16:43:24 +0200 Efraim Flashner wrote: > * gnu/packages/python.scm (python-requests): Update to 2.8.1. > [native-inputs]: Move python-setuptools here. > [inputs]: Add python-py, python-pytest, python-pytest-cov, python-wheel. > [arguments]: Enable tests. > --- > gnu/packages/python.scm | 19 ++++++++++--------- > 1 file changed, 10 insertions(+), 9 deletions(-) >=20 > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index b110921..8084831 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -2192,21 +2192,22 @@ compatible install in a way that is very close to= the on-disk format.") > (define-public python-requests > (package > (name "python-requests") > - (version "2.8.0") > + (version "2.8.1") > (source (origin > (method url-fetch) > - (uri > - (string-append > - "https://pypi.python.org/packages/source/r/requests/reque= sts-" > - version ".tar.gz")) > + (uri (pypi-uri "requests" version)) > (sha256 > (base32 > - "0yrvj8hfnabrdxds59w6d6887sn5j0jlgpmcq04lk4k0kdc07w5j")))) > + "0ny2nr1sqr4hcn3903ghmh7w2yni8shlfv240a8c9p6wyidqvzl4")))) > (build-system python-build-system) > + (native-inputs > + `(("python-setuptools" ,python-setuptools))) > (inputs > - `(("python-setuptools" ,python-setuptools) > - ("python-certifi" ,python-certifi))) > - (arguments `(#:tests? #f)) ; no tests > + `(("python-certifi" ,python-certifi) > + ("python-py" ,python-py) > + ("python-pytest" ,python-pytest) > + ("python-pytest-cov" ,python-pytest-cov) > + ("python-wheel" ,python-wheel))) > (home-page "http://python-requests.org/") > (synopsis "Python HTTP library") > (description --=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_/zbehsmM.EE6LfdL9HSf6lnI Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0003-gnu-python-requests-Update-to-2.8.1.patch =46rom be148f5b00d667ceeade4c71d67534116152750b Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 23 Nov 2015 17:58:07 +0200 Subject: [PATCH 03/10] gnu: python-requests: Update to 2.8.1. * gnu/packages/python.scm (python-requests): Update to 2.8.1. [native-inputs]: Move python-setuptools here. [inputs]: Remove python-certifi. [propagated-inputs]: Add python-py, python-pytest, python-pytest-cov, python-wheel. [arguments]: Enable tests. --- gnu/packages/python.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 442270c..0f3e3e7 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2195,21 +2195,21 @@ compatible install in a way that is very close to t= he on-disk format.") (define-public python-requests (package (name "python-requests") - (version "2.8.0") + (version "2.8.1") (source (origin (method url-fetch) - (uri - (string-append - "https://pypi.python.org/packages/source/r/requests/request= s-" - version ".tar.gz")) + (uri (pypi-uri "requests" version)) (sha256 (base32 - "0yrvj8hfnabrdxds59w6d6887sn5j0jlgpmcq04lk4k0kdc07w5j")))) + "0ny2nr1sqr4hcn3903ghmh7w2yni8shlfv240a8c9p6wyidqvzl4")))) (build-system python-build-system) - (inputs - `(("python-setuptools" ,python-setuptools) - ("python-certifi" ,python-certifi))) - (arguments `(#:tests? #f)) ; no tests + (native-inputs + `(("python-setuptools" ,python-setuptools))) + (propagated-inputs + `(("python-py" ,python-py) + ("python-pytest" ,python-pytest) + ("python-pytest-cov" ,python-pytest-cov) + ("python-wheel" ,python-wheel))) (home-page "http://python-requests.org/") (synopsis "Python HTTP library") (description --=20 2.6.2 --MP_/zbehsmM.EE6LfdL9HSf6lnI-- --Sig_/frCyNXnuyXa2rXN4j.5MdwY Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCgAGBQJWZd10AAoJEPTB05F+rO6Tn+YP/2vt4askvZ3hvRUlz2XTSfMP 0E+VxBP7618CRIhFhQmuq0QOS4mPTeHPzbW0rc61EGwEMTVYcCJ0SLUINg16rtcQ 5aqKiv9AZZ9MjqzX5WQTY4dRg1tovwZHNONo6ZG7/atlS/HJW5RS2qWwpjzT/QQi kaM6He1aZHt30ouWqU6QaHKVW6Trk/GuiXQCtmn9iS7a0tTKIOiD6+C8qE8r232G omQ7LcidnnlTeDtMBuA6xPbytOeeM+vFf+rETcmmd+/I/ViAED9xHeq5VIfOm2po Y3wI3BmxygCzRZjwPMJpMx4QKxlGbMlvkRTCilLuIaDtWlrtW6babuhy/njySA4T hNzl6T+EJbEaX9/AZdpQYLF0LR180W4vWFROH5tS1x0ag1YMxDNZT2xjQvmFG/Js WmvmMX+rwTM+Qj894mcVPVMmHsC+V9eWyEpparm82YqPK4W4NTUupIpCfv94pGEg 2gwrAfZz4Xa1hxh0irl41VbDmtBQmyQgPyyZdd2nyt0HW2ciPMPxYP/tRaQHxpPc yQPu5EOqdMl1V6Hqq0J9o5g5EkOJM1QkXFekK952ZmzGS5CSiZOmvVf7qOIe653L /3a1eb1wFb/mHUV06iqIK3Lobr5c9BnBZ5tSrmw8rDi3JVfdBwRpWAXRnk7vD0pO AGUgXKqn77CK77hF+NJM =ToC3 -----END PGP SIGNATURE----- --Sig_/frCyNXnuyXa2rXN4j.5MdwY--