gnu: synapse: Update to 1.14.0.
* gnu/packages/matrix.scm (synapse): Update to 1.14.0.
This commit is contained in:
parent
6f07472ab2
commit
2d84d65316
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2020 Alex ter Weele <alex.ter.weele@gmail.com>
|
;;; Copyright © 2020 Alex ter Weele <alex.ter.weele@gmail.com>
|
||||||
|
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -59,15 +60,15 @@ an LDAP server.")
|
||||||
(define-public synapse
|
(define-public synapse
|
||||||
(package
|
(package
|
||||||
(name "synapse")
|
(name "synapse")
|
||||||
(version "1.11.0")
|
(version "1.14.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "matrix-synapse" version))
|
(uri (pypi-uri "matrix-synapse" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0cqbwcz0fi4w413s1kcxvf696qi4n46n1k4ggnygqri5yq26qlfy"))))
|
"09drdqcjvpk9s3hq5rx9yxsxq0wak5fg5gfaiqfnbnxav2c2v7kq"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; TODO I think there are custom tests
|
;; TODO Run tests with ‘PYTHONPATH=. trial3 tests’.
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-simplejson" ,python-simplejson) ; not attested but required
|
`(("python-simplejson" ,python-simplejson) ; not attested but required
|
||||||
;; requirements (synapse/python_dependencies.py)
|
;; requirements (synapse/python_dependencies.py)
|
||||||
|
@ -100,6 +101,7 @@ an LDAP server.")
|
||||||
("python-bleach" ,python-bleach)
|
("python-bleach" ,python-bleach)
|
||||||
("python-typing-extensions" ,python-typing-extensions)
|
("python-typing-extensions" ,python-typing-extensions)
|
||||||
;; conditional requirements (synapse/python_dependencies.py)
|
;; conditional requirements (synapse/python_dependencies.py)
|
||||||
|
;;("python-hiredis" ,python-hiredis)
|
||||||
("python-matrix-synapse-ldap3" ,python-matrix-synapse-ldap3)
|
("python-matrix-synapse-ldap3" ,python-matrix-synapse-ldap3)
|
||||||
("python-psycopg2" ,python-psycopg2)
|
("python-psycopg2" ,python-psycopg2)
|
||||||
("python-jinja2" ,python-jinja2)
|
("python-jinja2" ,python-jinja2)
|
||||||
|
|
Reference in a new issue