From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51238) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVdJH-000572-Kr for guix-patches@gnu.org; Tue, 28 May 2019 10:42:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVdJ3-00028L-Es for guix-patches@gnu.org; Tue, 28 May 2019 10:42:32 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43241) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hVdIo-00020W-Kx for guix-patches@gnu.org; Tue, 28 May 2019 10:42:12 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hVdIo-0001k5-Gc for guix-patches@gnu.org; Tue, 28 May 2019 10:42:10 -0400 Subject: [bug#35952] [PATCH] gnu: Add python-aniso8601. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:47715) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVas0-0000B4-HB for guix-patches@gnu.org; Tue, 28 May 2019 08:06:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVarz-0004Zo-KI for guix-patches@gnu.org; Tue, 28 May 2019 08:06:20 -0400 Received: from 37.59.236.227.rdns.hasaserver.com ([37.59.236.227]:53404 helo=hamzeh-VirtualBox.Home) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVarz-0004Yc-2b for guix-patches@gnu.org; Tue, 28 May 2019 08:06:19 -0400 From: "h.nasajpour" Date: Tue, 28 May 2019 16:35:39 +0430 Message-Id: <20190528120539.4603-1-h.nasajpour@pantherx.org> In-Reply-To: References: 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: 35952@debbugs.gnu.org Cc: "h.nasajpour" * gnu/packages/python-xyz.scm (python-aniso8601): New variable. --- gnu/packages/python-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ec49359314..91f94f239e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15391,3 +15391,21 @@ by Igor Pavlov.") (define-public python2-pylzma (package-with-python2 python-pylzma)) + +(define-public python-aniso8601 + (package + (name "python-aniso8601") + (version "6.0.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "aniso8601" version)) + (sha256 (base32 "1bylfskk08ahyma25i8w3mcd0kywpxqx6icv5p7m1z0i8srak9mq")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) + (home-page "https://bitbucket.org/nielsenb/aniso8601") + (synopsis "A library for parsing ISO 8601 strings.") + (description + "A library for parsing ISO 8601 strings.") + (license license:expat))) + -- 2.17.1