2023-07-17 08:39:00 +00:00
|
|
|
{ lib, fetchFromGitHub, python3 }:
|
2022-07-28 22:40:09 +00:00
|
|
|
|
2023-07-17 08:39:00 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2021-05-23 15:35:44 +00:00
|
|
|
pname = "heisenbridge";
|
2023-08-28 16:16:23 +00:00
|
|
|
version = "1.14.5";
|
2021-05-23 15:35:44 +00:00
|
|
|
|
2021-11-17 22:00:23 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hifi";
|
|
|
|
repo = pname;
|
2022-05-19 15:38:14 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-08-28 16:16:23 +00:00
|
|
|
sha256 = "sha256-OmAmgHM+EmJ3mUY4lPBxIv2rAq8j2QEeTUMux7ZBfRE=";
|
2021-05-23 15:35:44 +00:00
|
|
|
};
|
|
|
|
|
2021-11-17 22:00:23 +00:00
|
|
|
postPatch = ''
|
|
|
|
echo "${version}" > heisenbridge/version.txt
|
|
|
|
'';
|
|
|
|
|
2023-07-17 08:39:00 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2021-05-23 15:35:44 +00:00
|
|
|
irc
|
2023-01-31 05:24:57 +00:00
|
|
|
ruamel-yaml
|
2022-01-15 01:43:40 +00:00
|
|
|
mautrix
|
2021-10-21 17:23:44 +00:00
|
|
|
python-socks
|
2021-05-23 15:35:44 +00:00
|
|
|
];
|
|
|
|
|
2023-07-17 08:39:00 +00:00
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
2021-11-17 22:00:23 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2021-05-23 15:35:44 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A bouncer-style Matrix-IRC bridge.";
|
|
|
|
homepage = "https://github.com/hifi/heisenbridge";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.sumnerevans ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "heisenbridge";
|
2021-05-23 15:35:44 +00:00
|
|
|
};
|
|
|
|
}
|