civodul pushed a commit to branch master
in repository guix.
commit bb91875bb76a426e745592efe91002a944ec7347
Author: Zheng Junjie <[email protected]>
AuthorDate: Thu Jan 21 18:36:16 2021 +0800
gnu: Add python-inotify-simple.
* gnu/packages/python-xyz.scm (python-inotify-simple): New variable.
Co-authored-by: Ludovic Courtès <[email protected]>
---
gnu/packages/python-xyz.scm | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d903a67..2706a8c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -93,7 +93,7 @@
;;; Copyright © 2020 Diego N. Barbato <[email protected]>
;;; Copyright © 2020 Leo Prikler <[email protected]>
;;; Copyright © 2019 Kristian Trandem <[email protected]>
-;;; Copyright © 2020 Zheng Junjie <[email protected]>
+;;; Copyright © 2020, 2021 Zheng Junjie <[email protected]>
;;; Copyright © 2021 Morgan Smith <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -6751,6 +6751,27 @@ need to use the older and less efficient
@code{pkg_resources} package.")
finding unresolved symbols in Python code and their corresponding imports.")
(license license:bsd-3)))
+(define-public python-inotify-simple
+ (package
+ (name "python-inotify-simple")
+ (version "1.3.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/chrisjbillington/inotify_simple")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dv9svrcz31acyq9smjlnw75xv3x5wpn5h6s8j8h0vrqyl3d7l05"))))
+ (build-system python-build-system)
+ (home-page
+ "https://github.com/chrisjbillington/inotify_simple")
+ (synopsis "Simple wrapper around inotify library")
+ (description
+ "@code{inotify-simple} is a simple wrapper around inotify library.")
+ (license license:bsd-3)))
+
(define-public python-jaraco-packaging
(package
(name "python-jaraco-packaging")