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