diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-17 14:54:12 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-18 12:54:06 +0100 |
| commit | 90ce202ad718e843a0ca53708b4e1d5249d95eb3 (patch) | |
| tree | 42ee70659d0b3d43786d3ef39ab1718aad4f162d /gnu | |
| parent | 45319553a48fa28206d96238f622363cd578c0e4 (diff) | |
gnu: python-inotify-simple: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-inotify-simple):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:test-backend, #:test-flags>: Set them to run tests.
[native-inputs]: Add python-setuptools.
Change-Id: I6c4c8bd8d11be155ea0fa1d0a684415c9470bb1d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d4718f0f94d..dd6526ca0c2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13976,9 +13976,13 @@ finding unresolved symbols in Python code and their corresponding imports.") (file-name (git-file-name name version)) (sha256 (base32 "1dv9svrcz31acyq9smjlnw75xv3x5wpn5h6s8j8h0vrqyl3d7l05")))) - (build-system python-build-system) - (home-page - "https://github.com/chrisjbillington/inotify_simple") + (build-system pyproject-build-system) + (arguments + (list + #:test-backend #~'custom + #:test-flags #~(list "example.py"))) + (native-inputs (list python-setuptools)) + (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.") |
