diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:04 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:13 +0100 |
commit | 0a3c0cae74c884f7017f5a01faa566bf6218c7f8 (patch) | |
tree | 62379ef88bf820eee7b4b901366ff084990bf293 /gnu/packages/python-xyz.scm | |
parent | 315d256c8122dbe460549e7f287ca04778fca021 (diff) |
gnu: python-aionotify: Update to 0.3.0.
* gnu/packages/python-xyz.scm (python-aionotify): Update to 0.3.0.
[build-system]: Move to pyproject-build-system.
* gnu/packages/patches/python-aionotify-0.2.0-py3.8.patch : Remove
patch.
* gnu/local.mk: Remove patch.
Change-Id: I9f13d6d71f69dd9877ac42e46b087989f23941e2
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 18fe1d540a..136deb9154 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31009,23 +31009,22 @@ Notation (CSON).") (define-public python-aionotify (package (name "python-aionotify") - (version "0.2.0") + (version "0.3.0") (source (origin ;; Source tarball on PyPi lacks tests (method git-fetch) (uri (git-reference (url "https://github.com/rbarrois/aionotify") - (commit (string-append "v" version)))) + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1sk9i8czxgsbrswsf1nlb4c82vgnlzi8zrvrxdip92w2z8hqh43y")) - (patches (search-patches "python-aionotify-0.2.0-py3.8.patch")))) - (build-system python-build-system) + (base32 "0qkzwccv8k6mx1yvc0hmsgnzgb4vh8h97kq7i64ic6xzxkd57vkz")))) + (build-system pyproject-build-system) (home-page "https://github.com/rbarrois/aionotify") - (synopsis "Asyncio-powered inotify library") + (synopsis "inotify library for Python") (description - "@code{aionotify} is a simple, asyncio-based inotify library.") + "@code{python-aionotify} is a simple, asyncio-based inotify library.") (license license:bsd-3))) (define-public python-forbiddenfruit |