From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:38459) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gsM8O-00089o-EZ for guix-patches@gnu.org; Sat, 09 Feb 2019 01:29:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gsM8N-0005ih-55 for guix-patches@gnu.org; Sat, 09 Feb 2019 01:29:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:41102) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gsM8N-0005iY-1C for guix-patches@gnu.org; Sat, 09 Feb 2019 01:29:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gsM8M-0005oO-TN for guix-patches@gnu.org; Sat, 09 Feb 2019 01:29:02 -0500 Subject: [bug#34398] [PATCH] gnu: Add python-backports-shutil-which. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:38325) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gsM8A-00082x-Pb for guix-patches@gnu.org; Sat, 09 Feb 2019 01:28:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gsM89-0005b3-TT for guix-patches@gnu.org; Sat, 09 Feb 2019 01:28:50 -0500 Received: from cascadia.aikidev.net ([173.255.214.101]:52768) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gsM86-0005YC-5w for guix-patches@gnu.org; Sat, 09 Feb 2019 01:28:47 -0500 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100e]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 54F071AAC0 for ; Fri, 8 Feb 2019 22:28:43 -0800 (PST) From: Vagrant Cascadian Date: Fri, 08 Feb 2019 22:28:37 -0800 Message-ID: <87k1i9v5ka.fsf@ponder> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34398@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * gnu/packages/python-xyz.scm (python-backports-shutil-which): New variable. =2D-- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 086eb3af26..143d9c2ffc 100644 =2D-- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -317,6 +317,31 @@ etc. ") (define-public python2-babel (package-with-python2 python-babel)) =20 +(define-public python-backports-shutil-which + (package + (name "python-backports-shutil-which") + (version "3.5.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "backports.shutil_which" version)) + (sha256 + (base32 + "0cy16w2dpv110afncag8x1zhzy3yz0iypny4iagdiyp4rdkzafgy")))) + (build-system python-build-system) + (home-page + "https://github.com/minrk/backports.shutil_which") + (synopsis + "Backport of shutil.which from Python 3.3") + (description + "Python-backports-shutil-which provides a backport of shutil.which fr= om +Python 3.3") + ;; The backported code is "psfl" license, setup.py is under "MIT" lice= nse. + (license + (list license:psfl + (license:non-copyleft + "https://raw.githubusercontent.com/minrk/backports.shutil_whic= h/master/LICENSE"))))) + (define-public python2-backport-ssl-match-hostname (package (name "python2-backport-ssl-match-hostname") =2D-=20 2.20.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXF5zFgAKCRDcUY/If5cW qjD+AQD6kIqvdWioiN+BQptUseu2QGTOgdMPbL6t24puKSPHrAD8ChICaZTsM4W+ 312WRBEXi7QzMoeKh2QDUqyGFwLTJwU= =O/9f -----END PGP SIGNATURE----- --=-=-=--