From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 05/10] gnu: Add python-pyinotify. Date: Fri, 29 Apr 2016 16:20:58 +0200 Message-ID: <1461939663-5936-6-git-send-email-tipecaml@gmail.com> References: <1461939663-5936-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57766) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aw9Is-0007Jb-RA for guix-devel@gnu.org; Fri, 29 Apr 2016 10:22:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aw9IX-0001NV-UV for guix-devel@gnu.org; Fri, 29 Apr 2016 10:21:53 -0400 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:34288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aw9IW-0001Gx-LN for guix-devel@gnu.org; Fri, 29 Apr 2016 10:21:37 -0400 Received: by mail-wm0-x242.google.com with SMTP id n129so5454818wmn.1 for ; Fri, 29 Apr 2016 07:21:22 -0700 (PDT) In-Reply-To: <1461939663-5936-1-git-send-email-tipecaml@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-pyinotify, python2-pyinotify): New variables. --- gnu/packages/python.scm | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1a7809e..698b683 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -36,7 +36,7 @@ (define-module (gnu packages python) #:use-module ((guix licenses) - #:select (asl2.0 bsd-4 bsd-3 bsd-2 non-copyleft cc0 x11 x11-style + #:select (asl2.0 bsd-style bsd-4 bsd-3 bsd-2 non-copyleft cc0 x11 x11-style gpl2 gpl2+ gpl3+ lgpl2.0+ lgpl2.1 lgpl2.1+ lgpl3+ agpl3+ isc mpl2.0 psfl public-domain repoze unlicense x11-style zpl2.1)) @@ -8717,3 +8717,28 @@ searchable history.") (define-public python2-cmd2 (package-with-python2 python-cmd2)) +(define-public python-pyinotify + (package + (name "python-pyinotify") + (version "0.9.6") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/e3/c0/" + "fd5b18dde17c1249658521f69598f3252f11d9d7a980c5be8619970646e1/" + "pyinotify-" version ".tar.gz")) + (sha256 + (base32 + "1x3i9wmzw33fpkis203alygfnrkcmq9w1aydcm887jh6frfqm6cw")))) + (build-system python-build-system) + (native-inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "http://github.com/seb-m/pyinotify") + (synopsis "Linux filesystem events monitoring") + (description + "Python bindings for inotify.") + (license bsd-style))) + +(define-public python2-pyinotify + (package-with-python2 python-pyinotify)) -- 2.6.2