From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:40900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmaY-0000O9-0b for guix-patches@gnu.org; Tue, 28 May 2019 20:37:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVmaW-0001vO-47 for guix-patches@gnu.org; Tue, 28 May 2019 20:37:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44221) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hVmaV-0001vD-UX for guix-patches@gnu.org; Tue, 28 May 2019 20:37:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hVmaV-0006An-RH for guix-patches@gnu.org; Tue, 28 May 2019 20:37:03 -0400 Subject: [bug#35977] [PATCH 45/47] gnu: Add python-strict-rfc3339. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:40673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmZs-0008Qg-FG for guix-patches@gnu.org; Tue, 28 May 2019 20:36:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVmZr-0001Vu-I1 for guix-patches@gnu.org; Tue, 28 May 2019 20:36:24 -0400 Received: from 37.59.236.227.rdns.hasaserver.com ([37.59.236.227]:55897 helo=hamzeh-VirtualBox.Home) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmZr-0001VP-0f for guix-patches@gnu.org; Tue, 28 May 2019 20:36:23 -0400 From: "h.nasajpour" Date: Wed, 29 May 2019 05:06:21 +0430 Message-Id: <20190529003621.3314-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: 35977@debbugs.gnu.org Cc: "h.nasajpour" * gnu/packages/time.scm (python-strict-rfc3339): New variable --- gnu/packages/time.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 1363843b31..9e23ffae14 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -440,3 +440,21 @@ datetime type.") modifies the @code{time}, @code{gettimeofday} and @code{clock_gettime} system calls.") (license gpl2))) + +(define-public python-strict-rfc3339 + (package + (name "python-strict-rfc3339") + (version "0.7") + (source (origin + (method url-fetch) + (uri (pypi-uri "strict-rfc3339" version)) + (sha256 (base32 "0xqjbsn0g1h88rayh5yrpdagq60zfwrfs3yvk6rmgby3vyz1gbaw")))) + (build-system python-build-system) + (arguments + `( + #:tests? #f + )) + (home-page "https://github.com/danielrichman/strict-rfc3339") + (synopsis "Strict, simple, lightweight RFC3339 functions.") + (description "Convert unix timestamps to and from RFC3339.") + (license license:gpl3+))) -- 2.17.1