[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 05/10] gnu: Add python-pyinotify.
From: |
Cyril Roelandt |
Subject: |
[PATCH 05/10] gnu: Add python-pyinotify. |
Date: |
Fri, 29 Apr 2016 16:20:58 +0200 |
* 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
- [PATCH 02/10] gnu: Update python-unittest2 to 0.6.0, (continued)
- [PATCH 02/10] gnu: Update python-unittest2 to 0.6.0, Cyril Roelandt, 2016/04/29
- [PATCH 08/10] gnu: Update python-mock to 2.0.0., Cyril Roelandt, 2016/04/29
- [PATCH 09/10] gnu: Add python-cliff., Cyril Roelandt, 2016/04/29
- [PATCH 10/10] gnu: Add python-barbicanclient., Cyril Roelandt, 2016/04/29
- [PATCH 07/10] gnu: Add python-funcsigs., Cyril Roelandt, 2016/04/29
- [PATCH 05/10] gnu: Add python-pyinotify.,
Cyril Roelandt <=
- Re: [PATCH 00/10] Add python-barbicanclient., Leo Famulari, 2016/04/30