2021-09-20 14:19:46 +01:00
|
|
|
{ lib, fetchurl, python3Packages }:
|
2021-05-23 16:35:44 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
|
|
pname = "heisenbridge";
|
2021-09-30 16:15:20 +01:00
|
|
|
version = "1.2.1";
|
2021-05-23 16:35:44 +01:00
|
|
|
|
2021-09-20 14:19:46 +01:00
|
|
|
# Use the release tarball because it has the version set correctly using the
|
|
|
|
# version.txt file.
|
|
|
|
src = fetchurl {
|
2021-09-21 20:55:45 +01:00
|
|
|
url = "https://github.com/hifi/heisenbridge/releases/download/v${version}/heisenbridge-${version}.tar.gz";
|
2021-09-30 16:15:20 +01:00
|
|
|
sha256 = "sha256-w+8gsuPlnT1pl+jiZFBYcIAN4agIAcvwkmdysj3+RAQ=";
|
2021-05-23 16:35:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
aiohttp
|
|
|
|
irc
|
2021-09-23 14:45:41 +01:00
|
|
|
mautrix
|
2021-05-23 16:35:44 +01:00
|
|
|
pyyaml
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A bouncer-style Matrix-IRC bridge.";
|
|
|
|
homepage = "https://github.com/hifi/heisenbridge";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.sumnerevans ];
|
|
|
|
};
|
|
|
|
}
|