From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44010) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieZGZ-0006Hl-IF for guix-patches@gnu.org; Tue, 10 Dec 2019 01:45:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieZGY-0006tE-D5 for guix-patches@gnu.org; Tue, 10 Dec 2019 01:45:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48866) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieZGY-0006t9-9p for guix-patches@gnu.org; Tue, 10 Dec 2019 01:45:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ieZGY-00025R-8j for guix-patches@gnu.org; Tue, 10 Dec 2019 01:45:02 -0500 Subject: [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue. Resent-Message-ID: From: Brett Gilio References: <20190529003607.3264-1-h.nasajpour@pantherx.org> Date: Tue, 10 Dec 2019 00:43:48 -0600 In-Reply-To: <20190529003607.3264-1-h.nasajpour@pantherx.org> (h. nasajpour's message of "Wed, 29 May 2019 05:06:07 +0430") Message-ID: <87o8wgk7dn.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: 35976@debbugs.gnu.org "h.nasajpour" writes: > * gnu/packages/python-xyz.scm (python-persist-queue): 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 298a59f59f..e47e5bbcd2 100644 > --- a/gnu/packages/python-xyz.scm > +++ b/gnu/packages/python-xyz.scm > @@ -15537,3 +15537,21 @@ by Igor Pavlov.") > gradual typing, generics and union types.") > (license license:expat))) > > + > +(define-public python-persist-queue > + (package > + (name "python-persist-queue") > + (version "0.4.2") > + (source (origin > + (method url-fetch) > + (uri (pypi-uri "persist-queue" version)) > + (sha256 (base32 "0xhvj26jkc4fk0yjzn47is6wh8figyp5cralj8d56r4bidn78wp2")))) > + (build-system python-build-system) > + (arguments > + `(#:tests? #f)) > + (home-page "https://github.com/peter-wangxu/persist-queue") > + (synopsis "A thread-safe disk based persistent queue in Python.") > + (description > + "persist-queue implements a file-based queue and a serial of sqlite3-based queues") > + (license license:bsd-2))) > + Hi, This package needs the same treatment as some of the other packages I have mentioned from your series. If you could do those things we can get it pushed to master! Thanks. -- Brett M. Gilio Homepage -- https://scm.pw/ GNU Guix -- https://guix.gnu.org/