2020-02-29 12:19:28 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2020 Alex ter Weele <alex.ter.weele@gmail.com>
|
2020-06-03 15:43:49 -04:00
|
|
|
|
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2021-01-15 13:23:01 -05:00
|
|
|
|
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
2020-12-28 16:32:40 -05:00
|
|
|
|
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
2020-02-29 12:19:28 -05: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 12:22:06 -05:00
|
|
|
|
#:use-module (gnu packages check)
|
2021-10-14 22:40:32 -04:00
|
|
|
|
#:use-module (gnu packages crypto)
|
2020-02-29 12:22:06 -05:00
|
|
|
|
#:use-module (gnu packages databases)
|
2020-04-12 01:55:10 -04:00
|
|
|
|
#:use-module (gnu packages monitoring)
|
2021-10-14 22:40:32 -04:00
|
|
|
|
#:use-module (gnu packages python-build)
|
|
|
|
|
#:use-module (gnu packages python-check)
|
2020-02-29 12:19:28 -05:00
|
|
|
|
#:use-module (gnu packages python-crypto)
|
2020-02-29 12:22:06 -05:00
|
|
|
|
#:use-module (gnu packages python-web)
|
2020-02-29 12:19:28 -05:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
2020-02-29 12:22:06 -05:00
|
|
|
|
#:use-module (gnu packages xml)
|
2020-02-29 12:19:28 -05:00
|
|
|
|
#:use-module (guix build-system python)
|
|
|
|
|
#:use-module (guix download)
|
2021-10-14 22:40:32 -04:00
|
|
|
|
#:use-module (guix git-download)
|
2020-02-29 12:19:28 -05:00
|
|
|
|
#:use-module (guix packages))
|
|
|
|
|
|
2020-12-28 16:32:40 -05: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
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-requests))
|
2020-12-28 16:32:40 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-pytest python-pytest-runner python-responses))
|
2020-12-28 16:32:40 -05:00
|
|
|
|
(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 12:19:28 -05: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
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-twisted python-ldap3 python-service-identity))
|
2020-02-29 12:19:28 -05:00
|
|
|
|
(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 12:22:06 -05:00
|
|
|
|
|
|
|
|
|
(define-public synapse
|
|
|
|
|
(package
|
|
|
|
|
(name "synapse")
|
2021-10-14 15:05:47 -04:00
|
|
|
|
(version "1.29.0")
|
2020-02-29 12:22:06 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "matrix-synapse" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-10-14 15:05:47 -04:00
|
|
|
|
"0if2yhpz8psg0661401mvxznldbfhk2j9rhbs25jdaqm9jsv6907"))))
|
2020-02-29 12:22:06 -05:00
|
|
|
|
(build-system python-build-system)
|
2020-06-03 15:43:49 -04:00
|
|
|
|
;; TODO Run tests with ‘PYTHONPATH=. trial3 tests’.
|
2020-02-29 12:22:06 -05:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-simplejson ; not attested but required
|
|
|
|
|
;; requirements (synapse/python_dependencies.py)
|
|
|
|
|
python-jsonschema
|
|
|
|
|
python-frozendict
|
|
|
|
|
python-unpaddedbase64
|
|
|
|
|
python-canonicaljson
|
|
|
|
|
python-signedjson
|
|
|
|
|
python-pynacl
|
|
|
|
|
python-idna
|
|
|
|
|
python-service-identity
|
|
|
|
|
python-twisted
|
|
|
|
|
python-treq
|
|
|
|
|
python-pyopenssl
|
|
|
|
|
python-pyyaml
|
|
|
|
|
python-pyasn1
|
|
|
|
|
python-pyasn1-modules
|
|
|
|
|
python-daemonize
|
|
|
|
|
python-bcrypt
|
|
|
|
|
python-pillow
|
|
|
|
|
python-sortedcontainers
|
|
|
|
|
python-pymacaroons
|
|
|
|
|
python-msgpack
|
|
|
|
|
python-phonenumbers
|
|
|
|
|
python-six
|
|
|
|
|
python-prometheus-client
|
|
|
|
|
python-attrs
|
|
|
|
|
python-netaddr
|
|
|
|
|
python-jinja2
|
|
|
|
|
python-bleach
|
|
|
|
|
python-typing-extensions
|
|
|
|
|
;; conditional requirements (synapse/python_dependencies.py)
|
|
|
|
|
;;("python-hiredis" ,python-hiredis)
|
|
|
|
|
python-matrix-synapse-ldap3
|
|
|
|
|
python-psycopg2
|
|
|
|
|
python-jinja2
|
|
|
|
|
python-txacme
|
|
|
|
|
python-pysaml2
|
|
|
|
|
python-lxml
|
|
|
|
|
python-packaging
|
|
|
|
|
;; sentry-sdk, jaeger-client, and opentracing could be included, but
|
|
|
|
|
;; all are monitoring aids and not essential.
|
|
|
|
|
python-pyjwt))
|
2020-02-29 12:22:06 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-mock python-parameterized))
|
2020-02-29 12:22:06 -05:00
|
|
|
|
(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)))
|
2021-10-14 22:40:32 -04:00
|
|
|
|
|
|
|
|
|
(define-public python-matrix-nio
|
|
|
|
|
(package
|
|
|
|
|
(name "python-matrix-nio")
|
|
|
|
|
(version "0.18.7")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "matrix-nio" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0cw4y6dx8n8hynxqlzzkj8p34nfbc2xryvmkr5yhmja31y4rks4k"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'install-tests
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(copy-recursively (string-append
|
|
|
|
|
(assoc-ref inputs "tests") "/tests")
|
|
|
|
|
"tests")
|
|
|
|
|
#t))
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
|
|
|
|
;; FIXME: two tests fail, for unknown reasons
|
|
|
|
|
(invoke "python" "-m" "pytest" "-vv" "tests" "-k"
|
|
|
|
|
(string-append
|
|
|
|
|
"not test_upload_binary_file_object "
|
|
|
|
|
"and not test_connect_wrapper"))))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-pytest" ,python-pytest-6)
|
|
|
|
|
("python-hyperframe" ,python-hyperframe)
|
|
|
|
|
("python-hypothesis" ,python-hypothesis-6.23)
|
|
|
|
|
("python-hpack" ,python-hpack)
|
|
|
|
|
("python-faker" ,python-faker)
|
|
|
|
|
("python-pytest-aiohttp" ,python-pytest-aiohttp)
|
|
|
|
|
("python-aioresponses" ,python-aioresponses)
|
|
|
|
|
("python-pytest-benchmark" ,python-pytest-benchmark)
|
|
|
|
|
("python-toml" ,python-toml)
|
|
|
|
|
("tests"
|
|
|
|
|
;; The release on pypi comes without tests. We can't build from this
|
|
|
|
|
;; checkout, though, because installation requires an invocation of
|
|
|
|
|
;; poetry.
|
|
|
|
|
,(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/poljar/matrix-nio.git")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"152prkndk53pfxm4in4xak4hwzyaxlbp6wv2zbk2xpzgyy9bvn3s"))))))
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-aiofiles
|
|
|
|
|
python-aiohttp
|
|
|
|
|
python-aiohttp-socks
|
|
|
|
|
python-atomicwrites-1.4
|
|
|
|
|
python-cachetools
|
|
|
|
|
python-future
|
|
|
|
|
python-h11
|
|
|
|
|
python-h2
|
|
|
|
|
python-jsonschema
|
|
|
|
|
python-logbook
|
|
|
|
|
python-olm
|
|
|
|
|
python-peewee
|
|
|
|
|
python-pycryptodome
|
|
|
|
|
python-unpaddedbase64))
|
2021-10-14 22:40:32 -04:00
|
|
|
|
(home-page "https://github.com/poljar/matrix-nio")
|
|
|
|
|
(synopsis
|
|
|
|
|
"Python Matrix client library, designed according to sans I/O principles")
|
|
|
|
|
(description
|
|
|
|
|
"Matrix nio is a multilayered Matrix client library. The underlying base
|
|
|
|
|
layer doesn't do any network IO on its own, but on top of that is a full
|
|
|
|
|
fledged batteries-included asyncio layer using aiohttp.")
|
|
|
|
|
(license license:isc)))
|
2021-10-14 22:40:33 -04:00
|
|
|
|
|
|
|
|
|
(define-public pantalaimon
|
|
|
|
|
(package
|
|
|
|
|
(name "pantalaimon")
|
|
|
|
|
(version "0.10.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/matrix-org/pantalaimon")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"153d8083lj3qqirbv5q1d3igzd61a5kyzfk7xmv29sd3jbs8ysm9"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'downgrade-appdirs-requirement
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "setup.py"
|
|
|
|
|
;; FIXME: Remove this once appdirs is updated.
|
|
|
|
|
;; Upgrading python-appdirs requires rebuilting 3000+ packages,
|
|
|
|
|
;; when 1.4.4 is a simple maintenance fix from 1.4.3.
|
|
|
|
|
(("appdirs >= 1.4.4") "appdirs >= 1.4.3"))))
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
2022-01-10 17:26:07 -05:00
|
|
|
|
(invoke "pytest" "-vv" "tests"))))
|
|
|
|
|
;; XXX: The sanity check trips on optional GUI libraries for the
|
|
|
|
|
;; panctl command.
|
|
|
|
|
(delete 'sanity-check))))
|
2021-10-14 22:40:33 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-pytest python-faker python-pytest-aiohttp
|
|
|
|
|
python-aioresponses))
|
2021-10-14 22:40:33 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-aiohttp
|
|
|
|
|
python-appdirs
|
|
|
|
|
python-attrs
|
|
|
|
|
python-cachetools
|
|
|
|
|
python-click
|
|
|
|
|
python-janus
|
|
|
|
|
python-keyring
|
|
|
|
|
python-logbook
|
|
|
|
|
python-matrix-nio
|
|
|
|
|
python-peewee
|
|
|
|
|
python-prompt-toolkit))
|
2021-10-14 22:40:33 -04:00
|
|
|
|
(home-page "https://github.com/matrix-org/pantalaimon")
|
|
|
|
|
(synopsis "Matrix proxy daemon that adds E2E encryption capabilities")
|
|
|
|
|
(description
|
|
|
|
|
"Pantalaimon is an end-to-end encryption aware Matrix reverse proxy
|
|
|
|
|
daemon. Pantalaimon acts as a good man in the middle that handles the
|
|
|
|
|
encryption for you. Messages are transparently encrypted and decrypted for
|
|
|
|
|
clients inside of pantalaimon.")
|
|
|
|
|
(license license:asl2.0)))
|