mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-inotify.
* gnu/packages/python-xyz.scm (python-inotify): New variable. Change-Id: Iff49c585ee257161c86e6ef12f84233d33e504ae Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
db6d6b00e7
commit
f627558ec7
1 changed files with 31 additions and 0 deletions
|
@ -1082,6 +1082,37 @@ supports:
|
||||||
identities.")
|
identities.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-inotify
|
||||||
|
(package
|
||||||
|
(name "python-inotify")
|
||||||
|
(version "0.2.12")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/dsoprea/PyInotify")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1n1rqpzk70ap2i4zk2k0znz407i909y2001v65agy7y30apjzb67"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "inotify/resources/requirements.txt"
|
||||||
|
(("build")
|
||||||
|
"")))))))
|
||||||
|
(native-inputs (list python-pytest python-setuptools))
|
||||||
|
(home-page "https://github.com/dsoprea/PyInotify")
|
||||||
|
(synopsis "Linux filesystem activity monitor library for Python")
|
||||||
|
(description
|
||||||
|
"This package provides an efficient and elegant inotify (Linux filesystem
|
||||||
|
activity monitor) library for Python.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
||||||
(define-public python-jsonpath-ng
|
(define-public python-jsonpath-ng
|
||||||
(package
|
(package
|
||||||
(name "python-jsonpath-ng")
|
(name "python-jsonpath-ng")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue