[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51222] [PATCH 21/25] gnu: Add python-matrix-nio.
From: |
Sébastien Lerique |
Subject: |
[bug#51222] [PATCH 21/25] gnu: Add python-matrix-nio. |
Date: |
Fri, 15 Oct 2021 11:40:32 +0900 |
* gnu/packages/python-xyz.scm (python-matrix-nio): New variable.
---
gnu/packages/python-xyz.scm | 76 +++++++++++++++++++++++++++++++++++++
1 file changed, 76 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f090eb2b5a..453d54a085 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -294,6 +294,82 @@ The purpose of this package is to provide an easy way to
test asynchronous
HTTP requests.")
(license license:expat)))
+(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
+ `(("python-aiofiles" ,python-aiofiles)
+ ("python-aiohttp" ,python-aiohttp)
+ ("python-aiohttp-socks" ,python-aiohttp-socks)
+ ("python-atomicwrites" ,python-atomicwrites-1.4)
+ ("python-cachetools" ,python-cachetools)
+ ("python-future" ,python-future)
+ ("python-h11" ,python-h11)
+ ("python-h2" ,python-h2)
+ ("python-jsonschema" ,python-jsonschema)
+ ("python-logbook" ,python-logbook)
+ ("python-olm" ,python-olm)
+ ("python-peewee" ,python-peewee)
+ ("python-pycryptodome" ,python-pycryptodome)
+ ("python-unpaddedbase64" ,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 python-janus
(package
(name "python-janus")
--
2.33.0
- [bug#51222] [PATCH 09/25] gnu: python-h2: Update to 4.1.0., (continued)
- [bug#51222] [PATCH 09/25] gnu: python-h2: Update to 4.1.0., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 11/25] gnu: python-curio: Update to 1.5., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 13/25] gnu: python-ukpostcodeparser: Update to 1.1.2., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 14/25] gnu: python-unpaddedbase64: Update to 2.1.0., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 16/25] gnu: Add python2-atomicwrites-1.4., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 12/25] gnu: python-faker: Update to 9.3.1., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 15/25] gnu: Add python-atomicwrites-1.4., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 17/25] gnu: Add python-aioresponses., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 18/25] gnu: Add python-janus., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 19/25] gnu: Add python-logbook., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 21/25] gnu: Add python-matrix-nio.,
Sébastien Lerique <=
- [bug#51222] [PATCH 20/25] gnu: Add python-olm., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 22/25] gnu: Add python-pantalaimon., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 23/25] gnu: python-socks: Fix indentation., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 24/25] gnu: python-faker: Fix indentation., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 25/25] gnu: python-xyz.scm: Add copyright line., Sébastien Lerique, 2021/10/14
- [bug#51222] [PATCH 0/25] Package python-pantalaimon, Foo Chuan Wei, 2021/10/15
- [bug#51222] [PATCH 0/25] Package python-pantalaimon, Lars-Dominik Braun, 2021/10/16