diff options
| author | John Kehayias <john@guixotic.coop> | 2026-02-16 17:20:53 -0500 |
|---|---|---|
| committer | John Kehayias <john@guixotic.coop> | 2026-02-16 18:00:20 -0500 |
| commit | c19cd880277b27d995715ccbe3f46b591ddfedf1 (patch) | |
| tree | 345b4b83d47ae9d163b8008952e16c6c695e8b0a | |
| parent | 9f04c691bb4d0dcdc4cc93c3bbd8082fb46951ca (diff) | |
gnu: python-pynput: Fix sanity-check failing.
* gnu/packages/python-xyz.scm (python-pynput)[arguments]<#:phases>: Have the
start-xserver phase be before sanity-check, not check phase.
Change-Id: I2e0c0a73d804a4041d0c550a2dd7aba685bf40aa
| -rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0838c0085e6..8a282614237 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26849,7 +26849,7 @@ environments.") (substitute* "setup.py" (("RUNTIME_PACKAGES \\+ SETUP_PACKAGES") "RUNTIME_PACKAGES")))) - (add-before 'check 'start-xserver + (add-before 'sanity-check 'start-xserver (lambda* (#:key inputs #:allow-other-keys) (let ((Xvfb (search-input-file inputs "/bin/Xvfb"))) (system (format #f "~a :1 -screen 0 640x480x24 &" |
