gnu: python-matrix-synapse-ldap3: Fix build.

* gnu/packages/matrix.scm (python-matrix-synapse-ldap3)[arguments]: Delete
sanity check.
This commit is contained in:
Marius Bakke 2022-01-12 00:46:37 +01:00
parent a46a5a4196
commit fb6de84a6b
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 4 additions and 1 deletions

View File

@ -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")