mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add python-inotify-simple.
* gnu/packages/python-xyz.scm (python-inotify-simple): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
dcb5943944
commit
bb91875bb7
1 changed files with 22 additions and 1 deletions
|
@ -93,7 +93,7 @@
|
|||
;;; Copyright © 2020 Diego N. Barbato <dnbarbato@posteo.de>
|
||||
;;; Copyright © 2020 Leo Prikler <leo.prikler@student.tugraz.at>
|
||||
;;; Copyright © 2019 Kristian Trandem <kristian@devup.no>
|
||||
;;; Copyright © 2020 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2020, 2021 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -6751,6 +6751,27 @@ (define-public python-importmagic
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue