nixpkgs/pkgs/servers/heisenbridge/default.nix

36 lines
764 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, fetchpatch, python3 }:
2022-01-15 01:43:40 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "heisenbridge";
2022-01-15 01:43:40 +00:00
version = "1.10.0";
src = fetchFromGitHub {
owner = "hifi";
repo = pname;
rev = "v${version}";
2022-01-15 01:43:40 +00:00
sha256 = "sha256-rQBmg1CBourj/dDJ7P108gGMRdXWp6nwvHIBiQbJLQ0=";
};
postPatch = ''
echo "${version}" > heisenbridge/version.txt
'';
2022-01-15 01:43:40 +00:00
propagatedBuildInputs = with python3.pkgs; [
aiohttp
irc
2022-01-15 01:43:40 +00:00
mautrix
python-socks
pyyaml
];
2022-01-15 01:43:40 +00:00
checkInputs = with python3.pkgs; [
pytestCheckHook
];
meta = with lib; {
description = "A bouncer-style Matrix-IRC bridge.";
homepage = "https://github.com/hifi/heisenbridge";
license = licenses.mit;
maintainers = [ maintainers.sumnerevans ];
};
}