diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-12 00:46:37 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-12 23:50:15 +0100 |
commit | fb6de84a6b9ed38fc4fbf4fad89a0f8fe25111eb (patch) | |
tree | fbe74731cd5c7c0a7c32f9da7bfbe26f1e9420eb | |
parent | a46a5a419615df8cf86c4fb342642549fddeedb7 (diff) | |
download | guix-fb6de84a6b9ed38fc4fbf4fad89a0f8fe25111eb.tar.gz guix-fb6de84a6b9ed38fc4fbf4fad89a0f8fe25111eb.zip |
gnu: python-matrix-synapse-ldap3: Fix build.
* gnu/packages/matrix.scm (python-matrix-synapse-ldap3)[arguments]: Delete
sanity check.
-rw-r--r-- | gnu/packages/matrix.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm index 1c19eab5c1..e2c27f5a4c 100644 --- a/gnu/packages/matrix.scm +++ b/gnu/packages/matrix.scm @@ -72,7 +72,10 @@ (build-system python-build-system) (arguments ;; tests require synapse, creating a circular dependency. - '(#:tests? #f)) + '(#:tests? #f + #:phases (modify-phases %standard-phases + ;; Also, auth_provider.py attempts to import synapse. + (delete 'sanity-check)))) (propagated-inputs (list python-twisted python-ldap3 python-service-identity)) (home-page "https://github.com/matrix-org/matrix-synapse-ldap3") |