From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42440) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieZ07-0002As-7g for guix-patches@gnu.org; Tue, 10 Dec 2019 01:28:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieZ06-0005ur-4z for guix-patches@gnu.org; Tue, 10 Dec 2019 01:28:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48831) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieZ06-0005ug-22 for guix-patches@gnu.org; Tue, 10 Dec 2019 01:28:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ieZ05-0001W3-V8 for guix-patches@gnu.org; Tue, 10 Dec 2019 01:28:01 -0500 Subject: bug#35952: [PATCH] gnu: Add python-aniso8601. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Brett Gilio References: <20190528120539.4603-1-h.nasajpour@pantherx.org> Date: Tue, 10 Dec 2019 00:27:11 -0600 In-Reply-To: <20190528120539.4603-1-h.nasajpour@pantherx.org> (h. nasajpour's message of "Tue, 28 May 2019 16:35:39 +0430") Message-ID: <875ziolmps.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain 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: "h.nasajpour" Cc: 35952-done@debbugs.gnu.org "h.nasajpour" writes: > * 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))) > + Closing. This is a redundant package. If you meant to update it please send a revised patch in a new bug report reflecting the 8.0.0 upstream version. Thanks! -- Brett M. Gilio Homepage -- https://scm.pw/ GNU Guix -- https://guix.gnu.org/