2021-12-30 13:39:12 +00:00
|
|
|
{ lib, fetchFromGitHub, fetchpatch, python3 }:
|
2022-01-19 23:45:15 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2021-05-28 09:39:13 +00:00
|
|
|
pname = "heisenbridge";
|
2022-01-19 23:45:15 +00:00
|
|
|
version = "1.10.0";
|
2021-05-28 09:39:13 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hifi";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-01-19 23:45:15 +00:00
|
|
|
sha256 = "sha256-rQBmg1CBourj/dDJ7P108gGMRdXWp6nwvHIBiQbJLQ0=";
|
2021-05-28 09:39:13 +00:00
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
postPatch = ''
|
|
|
|
echo "${version}" > heisenbridge/version.txt
|
2022-01-25 03:21:06 +00:00
|
|
|
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace "irc >=19.0.0, <20.0" "irc"
|
2021-12-06 16:07:01 +00:00
|
|
|
'';
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2021-05-28 09:39:13 +00:00
|
|
|
aiohttp
|
|
|
|
irc
|
2022-01-19 23:45:15 +00:00
|
|
|
mautrix
|
2021-10-28 06:52:43 +00:00
|
|
|
python-socks
|
2021-05-28 09:39:13 +00:00
|
|
|
pyyaml
|
|
|
|
];
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
checkInputs = with python3.pkgs; [
|
2021-12-06 16:07:01 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A bouncer-style Matrix-IRC bridge.";
|
|
|
|
homepage = "https://github.com/hifi/heisenbridge";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.sumnerevans ];
|
|
|
|
};
|
|
|
|
}
|