diff options
author | Liliana Marie Prikler <[email protected]> | 2023-09-24 12:19:01 +0200 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2023-09-24 12:19:01 +0200 |
commit | b18b2d13488f2a92331ccad2dc8cbb54ee15582f (patch) | |
tree | fe841af2c61142cf065f4bd0f9d5b8668ae90823 /gnu/packages/matrix.scm | |
parent | afa9da84255d32d9f457be381c12666b69ac3f69 (diff) | |
parent | 35fd25af9bbcce84908101a9f487ba106a8d6df7 (diff) |
Merge branch 'master' into gnome-team
Diffstat (limited to 'gnu/packages/matrix.scm')
-rw-r--r-- | gnu/packages/matrix.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm index 6107dfc979..32ae62fcb4 100644 --- a/gnu/packages/matrix.scm +++ b/gnu/packages/matrix.scm @@ -171,6 +171,13 @@ homeserver and generally help bootstrap the ecosystem.") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "pyproject.toml" + ;; Remove upper bounds of cachetool pin. + (("cachetools (.*version = )\"\\^4" _ match) + (string-append "cachetools " match + "\">=4"))))) (add-before 'check 'install-tests (lambda* (#:key inputs outputs #:allow-other-keys) (copy-recursively (string-append |