aboutsummaryrefslogtreecommitdiff
path: -rw-r--r--gnu/packages/freedesktop.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index b59d09d15f..e76327cb58 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -897,7 +897,7 @@ Analysis and Reporting Technology) functionality.")
(define-public udisks
(package
(name "udisks")
- (version "2.7.7")
+ (version "2.8.4")
(source (origin
(method url-fetch)
(uri (string-append
@@ -905,7 +905,7 @@ Analysis and Reporting Technology) functionality.")
version "/udisks-" version ".tar.bz2"))
(sha256
(base32
- "1dnlxqgy9v0mjdknv3b1s64szdykyk3hk0rxj3chwhpd415lrwgs"))))
+ "06cq52kp1nyy15qzylywy9s7hhhqc45k0s3y68crf0zsmjyng0yj"))))
(build-system gnu-build-system)
(native-inputs
`(("docbook-xml" ,docbook-xml-4.3) ; to build the manpages
1401mvxznldbfhk2j9rhbs25jdaqm9jsv6907")))) (build-system python-build-system) ;; TODO Run tests with ‘PYTHONPATH=. trial3 tests’. (propagated-inputs (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)) (native-inputs (list python-mock 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))) (define-public python-matrix-nio (package (name "python-matrix-nio") (version "0.20.2") (source (origin (method url-fetch) (uri (pypi-uri "matrix_nio" version)) (sha256 (base32 "110wg1grhqqgwvlgr98r2k8wxcggpj7lbdwmgkgmi2l7qj1vw3dm")))) (build-system pyproject-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'relax-requirements (lambda _ (substitute* "pyproject.toml" ;; Remove upper bounds of cachetool pin. (("cachetools (.*version = )\"\\^4" _ match) (string-append "cachetools " match "\">=4"))))) (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) ("python-poetry-core" ,python-poetry-core) ("python-hypothesis" ,python-hypothesis) ("python-faker" ,python-faker) ("python-pytest-aiohttp" ,python-pytest-aiohttp) ("python-pytest-asyncio" ,python-pytest-asyncio) ("python-aioresponses" ,python-aioresponses) ("python-pytest-benchmark" ,python-pytest-benchmark) ("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 "1rd90sk5yygxzvcs4qhzr80bch7d3xszyfjf99pn10xsj10mi752")))))) (propagated-inputs (list python-aiofiles python-aiohttp python-aiohttp-socks python-atomicwrites python-cachetools python-dataclasses python-future python-h11 python-h2 python-jsonschema python-logbook python-olm python-peewee python-pycryptodome python-unpaddedbase64)) (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))) (define-public pantalaimon (package (name "pantalaimon") (version "0.10.5") (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 "16ask8v00654q307c55q5gnm8hrj40gibpab5zl52v4i0bgl9j68")))) (build-system python-build-system) (arguments (list #: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")))) (add-after 'downgrade-appdirs-requirement 'bugfixes (lambda _ (substitute* "pantalaimon/daemon.py" ;; FIXME: Remove this once a pantalaimon version with this fix ;; is officially released. ;; https://github.com/matrix-org/pantalaimon/pull/152/commits/d71770ca94981afde8c9be6aaaca951f0685b64e (("client.download\\(server_name, media_id, file_name\\)") "client.download(server_name=server_name, media_id=media_id, filename=file_name)")))) (add-after 'install 'install-doc (lambda _ (with-directory-excursion "docs/man" (let ((man (string-append #$output "/share/man"))) (install-file "panctl.1" (string-append man "/man1")) (install-file "pantalaimon.5" (string-append man "/man5")) (install-file "pantalaimon.8" (string-append man "/man8")))))) (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) (when tests? (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv" "tests"))))))) (native-inputs (list python-aioresponses python-faker python-pytest python-pytest-aiohttp)) (propagated-inputs (list python-aiohttp python-appdirs python-attrs python-cachetools python-click python-dbus python-janus python-keyring python-logbook python-matrix-nio python-notify2 python-peewee python-prompt-toolkit python-pydbus python-pygobject)) (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)))