From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60104) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqw0x-0002qo-KY for guix-patches@gnu.org; Mon, 13 Jan 2020 04:28:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iqw0w-0001f2-Ru for guix-patches@gnu.org; Mon, 13 Jan 2020 04:28:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52700) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iqw0w-0001eZ-O4 for guix-patches@gnu.org; Mon, 13 Jan 2020 04:28:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iqw0w-0004VW-LR for guix-patches@gnu.org; Mon, 13 Jan 2020 04:28:02 -0500 Subject: [bug#39110] [PATCH 2/2] gnu: Add python-aionotify References: <20200113092634.18637-1-ldb@leibniz-psychology.org> In-Reply-To: <20200113092634.18637-1-ldb@leibniz-psychology.org> Resent-Message-ID: From: Lars-Dominik Braun Date: Mon, 13 Jan 2020 10:27:39 +0100 Message-Id: <20200113092739.18738-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: 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 21d7b21132..890bec328f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17313,3 +17313,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