diff options
author | gemmaro <[email protected]> | 2023-05-28 23:54:04 +0900 |
---|---|---|
committer | Christopher Baines <[email protected]> | 2023-06-03 12:33:52 +0100 |
commit | f30f8ecc6961f181f670c960fa57ffa2442c0217 (patch) | |
tree | d77be3dc54a966b72c7375b48ec25906fc9f6bdf /gnu/packages/messaging.scm | |
parent | c5aeb15267706d241dfecf8115f8f5f984efb4d4 (diff) |
gnu: python-zulip: Fix test failure.
* gnu/packages/messaging.scm (python-zulip): Fix test failure.
Signed-off-by: Christopher Baines <[email protected]>
Diffstat (limited to 'gnu/packages/messaging.scm')
-rw-r--r-- | gnu/packages/messaging.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 46170ff31e..00897ea451 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2022 Giovanni Biscuolo <[email protected]> ;;; Copyright © 2023 Giacomo Leidi <[email protected]> ;;; Copyright © 2023 Yovan Naumovski <[email protected]> +;;; Copyright © 2023 gemmaro <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3085,7 +3086,13 @@ designed for experienced users.") (file-name (git-file-name name version)) (sha256 (base32 - "0da1ki1v252avy27j6d7snnc0gyq0xa9fypm3qdmxhw2w79d6q36")))) + "0da1ki1v252avy27j6d7snnc0gyq0xa9fypm3qdmxhw2w79d6q36")) + (modules '((guix build utils))) + (snippet + '(begin + ;; TODO: This is fixed upstream in later versions + (substitute* "zulip/tests/test_default_arguments.py" + (("optional arguments:") "options:")))))) (build-system python-build-system) (arguments `(#:phases |