weechatScripts.weechat-matrix: unstable-2019-11-10 -> unstable-2020-01-21

This commit is contained in:
Emily 2020-02-10 00:26:59 +00:00 committed by Frederik Rietdijk
parent ab0b90ec50
commit 6957e476f4

View File

@ -1,20 +1,34 @@
{ buildPythonPackage, stdenv, python, fetchFromGitHub, { buildPythonPackage
pyopenssl, webcolors, future, atomicwrites, , stdenv
attrs, Logbook, pygments, cachetools, matrix-nio }: , python
, fetchFromGitHub
, pyopenssl
, webcolors
, future
, atomicwrites
, attrs
, Logbook
, pygments
, matrix-nio
, aiohttp
, requests
}:
let let
matrixUploadPython = python.withPackages (ps: with ps; [ scriptPython = python.withPackages (ps: with ps; [
magic aiohttp
requests
python_magic
]); ]);
in buildPythonPackage { in buildPythonPackage {
pname = "weechat-matrix"; pname = "weechat-matrix";
version = "unstable-2019-11-10"; version = "unstable-2020-01-21";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "poljar"; owner = "poljar";
repo = "weechat-matrix"; repo = "weechat-matrix";
rev = "69ad2a9c03d516c212d3d0700dbb2bfe654f6365"; rev = "46640df3e0bfb058e97d8abe723bb88fdf4e5177";
sha256 = "1mfbkag5np2lgv6f31nyfnvavyh67jrrx6gxhzb8m99dd43lgs8c"; sha256 = "1j3l43j741csfxsp1nsc74y6wj2wm86c45iraf167g6p0sdzcq8z";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -25,8 +39,9 @@ in buildPythonPackage {
attrs attrs
Logbook Logbook
pygments pygments
cachetools
matrix-nio matrix-nio
aiohttp
requests
]; ];
passthru.scripts = [ "matrix.py" ]; passthru.scripts = [ "matrix.py" ];
@ -38,9 +53,17 @@ in buildPythonPackage {
mkdir -p $out/share $out/bin mkdir -p $out/share $out/bin
cp $src/main.py $out/share/matrix.py cp $src/main.py $out/share/matrix.py
cp $src/contrib/matrix_upload $out/bin/ cp \
$src/contrib/matrix_upload \
$src/contrib/matrix_decrypt \
$src/contrib/matrix_sso_helper \
$out/bin/
substituteInPlace $out/bin/matrix_upload \ substituteInPlace $out/bin/matrix_upload \
--replace '/usr/bin/env -S python3 -u' '${matrixUploadPython}/bin/python -u' --replace '/usr/bin/env -S python3' '${scriptPython}/bin/python'
substituteInPlace $out/bin/matrix_sso_helper \
--replace '/usr/bin/env -S python3' '${scriptPython}/bin/python'
substituteInPlace $out/bin/matrix_decrypt \
--replace '/usr/bin/env python3' '${scriptPython}/bin/python'
mkdir -p $out/${python.sitePackages} mkdir -p $out/${python.sitePackages}
cp -r $src/matrix $out/${python.sitePackages}/matrix cp -r $src/matrix $out/${python.sitePackages}/matrix
@ -53,6 +76,6 @@ in buildPythonPackage {
homepage = "https://github.com/poljar/weechat-matrix"; homepage = "https://github.com/poljar/weechat-matrix";
license = licenses.isc; license = licenses.isc;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.tilpner ]; maintainers = with maintainers; [ tilpner emily ];
}; };
} }