From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52448) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ej0v0-0001ZZ-RR for guix-patches@gnu.org; Tue, 06 Feb 2018 05:56:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ej0uw-0002ja-4U for guix-patches@gnu.org; Tue, 06 Feb 2018 05:56:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:51680) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ej0uw-0002jH-0D for guix-patches@gnu.org; Tue, 06 Feb 2018 05:56:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ej0uv-0006cW-Q9 for guix-patches@gnu.org; Tue, 06 Feb 2018 05:56:01 -0500 Subject: [bug#30369] [PATCH] gnu: Add python-isoweek. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52382) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ej0ul-0001O0-GF for guix-patches@gnu.org; Tue, 06 Feb 2018 05:55:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ej0uh-0002bO-Jf for guix-patches@gnu.org; Tue, 06 Feb 2018 05:55:51 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:49329) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ej0uh-0002ZL-D7 for guix-patches@gnu.org; Tue, 06 Feb 2018 05:55:47 -0500 From: Konrad Hinsen Date: Tue, 6 Feb 2018 11:52:42 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: 30369@debbugs.gnu.org * gnu/packages/python.scm (python-isoweek, python2-isoweek): New variables. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9483ad6b1..fddbe6af0 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -12417,3 +12417,26 @@ style guide, even if the original code didn't viol= ate the style guide.") =20 (define-public python2-yapf (package-with-python2 python-yapf)) + +(define-public python-isoweek + (package + (name "python-isoweek") + (version "1.3.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "isoweek" version)) + (sha256 + (base32 + "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk")))) + (build-system python-build-system) + (home-page "https://github.com/gisle/isoweek") + (synopsis "Objects representing a week") + (description "The isoweek module provide the class Week that implements +the week definition of ISO 8601. This standard also define a notation +for identifying weeks; yyyyWww (where the =E2=80=9CW=E2=80=9D is a literal= ). Week instances +stringify to this form.") + (license license:bsd-3))) + +(define-public python2-isoweek + (package-with-python2 python-isoweek)) --=20 2.14.3 (Apple Git-98)