From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:40878) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmaW-0000NB-92 for guix-patches@gnu.org; Tue, 28 May 2019 20:37:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVmaV-0001uf-7f for guix-patches@gnu.org; Tue, 28 May 2019 20:37:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44219) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hVmaV-0001ub-3u 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-0006AZ-0k for guix-patches@gnu.org; Tue, 28 May 2019 20:37:03 -0400 Subject: [bug#35976] [PATCH 44/47] gnu: Add python-persist-queue. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:40619) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmZe-0008Gj-A8 for guix-patches@gnu.org; Tue, 28 May 2019 20:36:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVmZd-0001OA-E2 for guix-patches@gnu.org; Tue, 28 May 2019 20:36:10 -0400 Received: from 37.59.236.227.rdns.hasaserver.com ([37.59.236.227]:55895 helo=hamzeh-VirtualBox.Home) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmZc-0001N4-Tq for guix-patches@gnu.org; Tue, 28 May 2019 20:36:09 -0400 From: "h.nasajpour" Date: Wed, 29 May 2019 05:06:07 +0430 Message-Id: <20190529003607.3264-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: 35976@debbugs.gnu.org Cc: "h.nasajpour" * 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))) + -- 2.17.1