blob: 0a74aa187f2faac8dabefeb73c182675333ca8a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
(define-module (gn packages messaging)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system python)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (gnu packages)
#:use-module (gnu packages check)
#:use-module (gnu packages matrix)
#:use-module (gnu packages python)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gn packages python))
(define-public weechat-matrix
(package
(name "weechat-matrix")
(version "0.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/poljar/weechat-matrix")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1iv55n4k05139f7jzkhczgw4qp6qwilrvfsy3c6v2m1kxffj12d3"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(delete 'build)
(replace 'install
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((weechat-python (string-append (assoc-ref outputs "out")
"/share/weechat/python")))
;; Avoid circular import by renaming the matrix module to
;; weechat_matrix.
(substitute* (cons "main.py"
(append (find-files "matrix")
(find-files "tests")))
(("from matrix") "from weechat_matrix")
(("import matrix") "import weechat_matrix"))
;; Install python modules.
(invoke "make" "install-lib"
(string-append "INSTALLDIR="
(site-packages inputs outputs)
"/weechat_matrix"))
;; Extend PYTHONPATH to find installed python modules.
(add-installed-pythonpath inputs outputs)
;; Augment sys.path so that dependencies are found.
(substitute* "main.py"
(("import os\n" all)
(apply string-append
all
"import sys\n"
(map (lambda (path)
(string-append "sys.path.append('" path "')\n"))
(string-split (getenv "PYTHONPATH") #\:)))))
;; Install script.
(mkdir-p weechat-python)
(copy-file "main.py"
(string-append weechat-python "/matrix.py")))))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest")))))))
(inputs
`(("python-matrix-nio" ,python-matrix-nio)
("python-pygments" ,python-pygments)
("python-pyopenssl" ,python-pyopenssl)
("python-webcolors" ,python-webcolors)))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/poljar/weechat-matrix")
(synopsis "Weechat Matrix protocol script")
(description "@code{weechat-matrix} is a Python plugin for Weechat that lets
Weechat communicate over the Matrix protocol.")
(license license:isc)))
|