2020-02-29 17:19:28 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2020 Alex ter Weele <alex.ter.weele@gmail.com>
|
2020-06-03 19:43:49 +00:00
|
|
|
|
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2021-01-15 18:23:01 +00:00
|
|
|
|
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
2020-12-28 21:32:40 +00:00
|
|
|
|
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
2020-02-29 17:19:28 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages matrix)
|
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2020-02-29 17:22:06 +00:00
|
|
|
|
#:use-module (gnu packages check)
|
|
|
|
|
#:use-module (gnu packages databases)
|
2020-04-12 05:55:10 +00:00
|
|
|
|
#:use-module (gnu packages monitoring)
|
2020-02-29 17:19:28 +00:00
|
|
|
|
#:use-module (gnu packages python-crypto)
|
2020-02-29 17:22:06 +00:00
|
|
|
|
#:use-module (gnu packages python-web)
|
2020-02-29 17:19:28 +00:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
2020-02-29 17:22:06 +00:00
|
|
|
|
#:use-module (gnu packages xml)
|
2020-02-29 17:19:28 +00:00
|
|
|
|
#:use-module (guix build-system python)
|
|
|
|
|
#:use-module (guix download)
|
|
|
|
|
#:use-module (guix packages))
|
|
|
|
|
|
2020-12-28 21:32:40 +00:00
|
|
|
|
(define-public python-matrix-client
|
|
|
|
|
(package
|
|
|
|
|
(name "python-matrix-client")
|
|
|
|
|
(version "0.3.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "matrix-client" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1mgjd0ymf9mvqjkvgx3xjhxap7rzdmpa21wfy0cxbw2xcswcrqyw"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("python-requests" ,python-requests)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-pytest" ,python-pytest)
|
|
|
|
|
("python-pytest-runner" ,python-pytest-runner)
|
|
|
|
|
("python-responses" ,python-responses)))
|
|
|
|
|
(home-page
|
|
|
|
|
"https://github.com/matrix-org/matrix-python-sdk")
|
|
|
|
|
(synopsis "Client-Server SDK for Matrix")
|
|
|
|
|
(description "This package provides client-server SDK for Matrix.")
|
|
|
|
|
(license license:asl2.0)))
|
|
|
|
|
|
2020-02-29 17:19:28 +00:00
|
|
|
|
(define-public python-matrix-synapse-ldap3
|
|
|
|
|
(package
|
|
|
|
|
(name "python-matrix-synapse-ldap3")
|
|
|
|
|
(version "0.1.4")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "matrix-synapse-ldap3" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"01bms89sl16nyh9f141idsz4mnhxvjrc3gj721wxh1fhikps0djx"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
;; tests require synapse, creating a circular dependency.
|
|
|
|
|
'(#:tests? #f))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("python-twisted" ,python-twisted)
|
|
|
|
|
("python-ldap3" ,python-ldap3)
|
|
|
|
|
("python-service-identity" ,python-service-identity)))
|
|
|
|
|
(home-page "https://github.com/matrix-org/matrix-synapse-ldap3")
|
|
|
|
|
(synopsis "LDAP3 auth provider for Synapse")
|
|
|
|
|
(description
|
|
|
|
|
"This package allows Synapse to use LDAP as a password provider.
|
|
|
|
|
This lets users log in to Synapse with their username and password from
|
|
|
|
|
an LDAP server.")
|
|
|
|
|
(license license:asl2.0)))
|
2020-02-29 17:22:06 +00:00
|
|
|
|
|
|
|
|
|
(define-public synapse
|
|
|
|
|
(package
|
|
|
|
|
(name "synapse")
|
2021-03-12 15:16:13 +00:00
|
|
|
|
(version "1.29.0")
|
2020-02-29 17:22:06 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "matrix-synapse" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-03-12 15:16:13 +00:00
|
|
|
|
"0if2yhpz8psg0661401mvxznldbfhk2j9rhbs25jdaqm9jsv6907"))))
|
2020-02-29 17:22:06 +00:00
|
|
|
|
(build-system python-build-system)
|
2020-06-03 19:43:49 +00:00
|
|
|
|
;; TODO Run tests with ‘PYTHONPATH=. trial3 tests’.
|
2020-02-29 17:22:06 +00:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("python-simplejson" ,python-simplejson) ; not attested but required
|
|
|
|
|
;; requirements (synapse/python_dependencies.py)
|
|
|
|
|
("python-jsonschema" ,python-jsonschema)
|
|
|
|
|
("python-frozendict" ,python-frozendict)
|
|
|
|
|
("python-unpaddedbase64" ,python-unpaddedbase64)
|
|
|
|
|
("python-canonicaljson" ,python-canonicaljson)
|
|
|
|
|
("python-signedjson" ,python-signedjson)
|
|
|
|
|
("python-pynacl" ,python-pynacl)
|
|
|
|
|
("python-idna" ,python-idna)
|
|
|
|
|
("python-service-identity" ,python-service-identity)
|
|
|
|
|
("python-twisted" ,python-twisted)
|
|
|
|
|
("python-treq" ,python-treq)
|
|
|
|
|
("python-pyopenssl" ,python-pyopenssl)
|
|
|
|
|
("python-pyyaml" ,python-pyyaml)
|
|
|
|
|
("python-pyasn1" ,python-pyasn1)
|
|
|
|
|
("python-pyasn1-modules" ,python-pyasn1-modules)
|
|
|
|
|
("python-daemonize" ,python-daemonize)
|
|
|
|
|
("python-bcrypt" ,python-bcrypt)
|
|
|
|
|
("python-pillow" ,python-pillow)
|
|
|
|
|
("python-sortedcontainers" ,python-sortedcontainers)
|
|
|
|
|
("python-pymacaroons" ,python-pymacaroons)
|
|
|
|
|
("python-msgpack" ,python-msgpack)
|
|
|
|
|
("python-phonenumbers" ,python-phonenumbers)
|
|
|
|
|
("python-six" ,python-six)
|
|
|
|
|
("python-prometheus-client" ,python-prometheus-client)
|
|
|
|
|
("python-attrs" ,python-attrs)
|
|
|
|
|
("python-netaddr" ,python-netaddr)
|
|
|
|
|
("python-jinja2" ,python-jinja2)
|
|
|
|
|
("python-bleach" ,python-bleach)
|
|
|
|
|
("python-typing-extensions" ,python-typing-extensions)
|
|
|
|
|
;; conditional requirements (synapse/python_dependencies.py)
|
2020-06-03 19:43:49 +00:00
|
|
|
|
;;("python-hiredis" ,python-hiredis)
|
2020-02-29 17:22:06 +00:00
|
|
|
|
("python-matrix-synapse-ldap3" ,python-matrix-synapse-ldap3)
|
|
|
|
|
("python-psycopg2" ,python-psycopg2)
|
|
|
|
|
("python-jinja2" ,python-jinja2)
|
|
|
|
|
("python-txacme" ,python-txacme)
|
|
|
|
|
("python-pysaml2" ,python-pysaml2)
|
|
|
|
|
("python-lxml" ,python-lxml)
|
2020-11-03 19:37:19 +00:00
|
|
|
|
("python-packaging" ,python-packaging)
|
2020-02-29 17:22:06 +00:00
|
|
|
|
;; sentry-sdk, jaeger-client, and opentracing could be included, but
|
|
|
|
|
;; all are monitoring aids and not essential.
|
|
|
|
|
("python-pyjwt" ,python-pyjwt)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-mock" ,python-mock)
|
|
|
|
|
("python-parameterized" ,python-parameterized)))
|
|
|
|
|
(home-page "https://github.com/matrix-org/synapse")
|
|
|
|
|
(synopsis "Matrix reference homeserver")
|
|
|
|
|
(description "Synapse is a reference \"homeserver\" implementation of
|
|
|
|
|
Matrix from the core development team at matrix.org, written in
|
|
|
|
|
Python/Twisted. It is intended to showcase the concept of Matrix and let
|
|
|
|
|
folks see the spec in the context of a codebase and let you run your own
|
|
|
|
|
homeserver and generally help bootstrap the ecosystem.")
|
|
|
|
|
(license license:asl2.0)))
|