From patchwork Thu Mar 5 19:22:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Maja_K=C4=85dzio=C5=82ka?= X-Patchwork-Id: 20545 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id CC49F27BBEA; Thu, 5 Mar 2020 19:22:11 +0000 (GMT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTP id 8AD5527BBE4 for ; Thu, 5 Mar 2020 19:22:11 +0000 (GMT) Received: from localhost ([::1]:55136 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j9w4R-0007fJ-4L for patchwork@mira.cbaines.net; Thu, 05 Mar 2020 14:22:11 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:33287) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j9w4K-0007eJ-7X for guix-patches@gnu.org; Thu, 05 Mar 2020 14:22:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j9w4J-0003nM-5l for guix-patches@gnu.org; Thu, 05 Mar 2020 14:22:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:37764) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j9w4J-0003nI-2Z for guix-patches@gnu.org; Thu, 05 Mar 2020 14:22:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j9w4I-0003qk-VK for guix-patches@gnu.org; Thu, 05 Mar 2020 14:22:02 -0500 X-Loop: help-debbugs@gnu.org Subject: [bug#39932] [PATCH 2/3] gnu: python-xyz: Add python-filelock. Resent-From: Jakub =?utf-8?b?S8SFZHppb8WCa2E=?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 05 Mar 2020 19:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39932 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39932@debbugs.gnu.org Received: via spool by 39932-submit@debbugs.gnu.org id=B39932.158343607714727 (code B ref 39932); Thu, 05 Mar 2020 19:22:02 +0000 Received: (at 39932) by debbugs.gnu.org; 5 Mar 2020 19:21:17 +0000 Received: from localhost ([127.0.0.1]:43734 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9w3Z-0003pN-BA for submit@debbugs.gnu.org; Thu, 05 Mar 2020 14:21:17 -0500 Received: from pat.zlotemysli.pl ([37.59.186.212]:49880) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9w3X-0003p0-5E for 39932@debbugs.gnu.org; Thu, 05 Mar 2020 14:21:15 -0500 Received: (qmail 9704 invoked by uid 1009); 5 Mar 2020 20:21:13 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25741. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.018073 secs); 05 Mar 2020 19:21:13 -0000 Received: from unknown (HELO localhost.localdomain) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with AES256-SHA encrypted SMTP; 5 Mar 2020 20:21:13 +0100 From: Jakub =?utf-8?b?S8SFZHppb8WCa2E=?= Date: Thu, 5 Mar 2020 20:22:03 +0100 Message-Id: <20200305192204.14973-2-kuba@kadziolka.net> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200305192204.14973-1-kuba@kadziolka.net> References: <20200305192204.14973-1-kuba@kadziolka.net> MIME-Version: 1.0 X-Qmailux-2.08st: added fake Content-Type header X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.51.188.43 X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/python-xyz.scm (python-filelock): New variable. --- gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2dfda3d26d..c3d08844e6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -670,6 +670,26 @@ API for locking files.") (define-public python2-lockfile (package-with-python2 python-lockfile)) +(define-public python-filelock + (package + (name "python-filelock") + (version "3.0.12") + (source + (origin + (method url-fetch) + (uri (pypi-uri "filelock" version)) + (sha256 + (base32 + "0ngzlvb5j8gqs2nxlp2b0jhzii792h66wsn694qm8kqixr225n0q")))) + (build-system python-build-system) + (home-page + "https://github.com/benediktschmitt/py-filelock") + (synopsis "A platform independent file lock") + (description "@code{filelock} contains a single module implementing +a platform independent file lock in Python, which provides a simple way of +inter-process communication.") + (license license:unlicense))) + (define-public python-semantic-version (package (name "python-semantic-version")