From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56611) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1irKbD-00010E-MY for guix-patches@gnu.org; Tue, 14 Jan 2020 06:43:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1irKb9-0003pj-Op for guix-patches@gnu.org; Tue, 14 Jan 2020 06:43:07 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54758) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1irKb9-0003p6-LU for guix-patches@gnu.org; Tue, 14 Jan 2020 06:43:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1irKb8-0005DD-KN for guix-patches@gnu.org; Tue, 14 Jan 2020 06:43:02 -0500 Subject: [bug#39110] [PATCH 2/2] gnu: Add python-aionotify Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 14 Jan 2020 12:41:23 +0100 Message-Id: <20200114114123.13530-2-ldb@leibniz-psychology.org> In-Reply-To: <20200114114123.13530-1-ldb@leibniz-psychology.org> References: <20200114114123.13530-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39110@debbugs.gnu.org Cc: iyzsong@member.fsf.org, Lars-Dominik Braun * gnu/packages/python-xyz.scm (python-aionotify): New variable --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index eb74f1e91b..b2b6d1d807 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17132,3 +17132,26 @@ libraries") "The package asynctest is built on top of the standard unittest module and cuts down boilerplate code when testing libraries for asyncio") (license license:asl2.0))) + +(define-public python-aionotify + (package + (name "python-aionotify") + (version "0.2.0") + (source + (origin + ;; Source tarball on PyPi lacks tests + (method git-fetch) + (uri (git-reference + (url "https://github.com/rbarrois/aionotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sk9i8czxgsbrswsf1nlb4c82vgnlzi8zrvrxdip92w2z8hqh43y")))) + (build-system python-build-system) + (native-inputs `(("python-asynctest" ,python-asynctest))) + (home-page + "https://github.com/rbarrois/aionotify") + (synopsis "Asyncio-powered inotify library") + (description "aionotify is a simple, asyncio-based inotify library") + (license license:bsd-3))) + -- 2.20.1