GNU bug report logs -
#62389
[PATCH 00/12] gnu: synapse: Update to 1.67.0
Previous Next
Full log
Message #8 received at 62389 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python-xyz.scm (python-matrix-common): New variable.
---
gnu/packages/python-xyz.scm | 41 +++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index abe4862121..e394341805 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7220,6 +7220,47 @@ (define-public python-matplotlib-venn
three-way Venn diagrams in @code{matplotlib}.")
(license license:expat)))
+(define-public python-matrix-common
+ (package
+ (name"python-matrix-common")
+ (version "1.2.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "matrix_common" version))
+ (sha256
+ (base32
+ "0lrqzb6s57fxp0kwffdqnkr2pj9aia459cv1b95b55dxlq1cz7d9"))))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'build
+ (lambda _
+ (setenv "SOURCE_DATE_EPOCH"
+ (number->string (* 10 366 24 60 60)))
+ (invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
+ (replace 'install
+ (lambda _
+ (let ((whl (car (find-files "dist" "\\.whl$"))))
+ (invoke "pip" "--no-cache-dir" "--no-input"
+ "install" "--no-deps" "--prefix" #$output whl))))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "-vv" "tests")))))))
+ (native-inputs
+ (list
+ python-pypa-build
+ python-pytest
+ python-setuptools-scm
+ python-wheel))
+ (home-page "https://github.com/matrix-org/matrix-python-common")
+ (synopsis "Common code for Synapse, Sydent and Sygnal")
+ (description "This package provides common utilities for Synapse, Sydent
+and Sygnal.")
+ (license license:asl2.0)))
+
(define-public python-pysnptools
(package
(name "python-pysnptools")
--
2.39.1
--
Best regards,
conses
This bug report was last modified 1 year and 126 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.