diff options
author | Marius Bakke <[email protected]> | 2022-06-27 19:23:48 +0200 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2022-06-27 19:23:48 +0200 |
commit | 2a7648774f1bba5bb443c00b8ab1a2ab75b7416f (patch) | |
tree | 3e081532d1d4f83706b62b499f655ea3ed836e5b /gnu/packages/presentation.scm | |
parent | 43519035f954b3dc41ac50a9a877fd802b864fdb (diff) | |
parent | 0bd1c4fbbc8a438876d6efa4feb275de461a2484 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/presentation.scm')
-rw-r--r-- | gnu/packages/presentation.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/presentation.scm b/gnu/packages/presentation.scm index 1601ba7f2a..1472a2fcc1 100644 --- a/gnu/packages/presentation.scm +++ b/gnu/packages/presentation.scm @@ -51,6 +51,11 @@ `(#:tests? #f ; Test suite hasn't withstood the test of time. #:phases (modify-phases %standard-phases + (add-after 'unpack 'loosen-requirements + (lambda _ + ;; Remove version pinning. + (substitute* "requirements.txt" + (("pbr>=.*") "pbr")))) (replace 'wrap (lambda* (#:key python inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -68,8 +73,9 @@ "/site-packages") (search-path-as-string->list (or (getenv "GUIX_PYTHONPATH") "")))))) - '("presentty" "presentty-console"))) - #t))))) + '("presentty" "presentty-console"))))) + ;; XXX: console import test fails to find palette.py from the lib? + (delete 'sanity-check)))) (inputs (list cowsay figlet |