nixpkgs-suyu/pkgs/servers/heisenbridge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
843 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, fetchpatch, python3 }:
2022-01-15 02:43:40 +01:00
python3.pkgs.buildPythonApplication rec {
pname = "heisenbridge";
2022-02-05 20:04:53 +01:00
version = "1.10.1";
src = fetchFromGitHub {
owner = "hifi";
repo = pname;
rev = "v${version}";
2022-02-05 20:04:53 +01:00
sha256 = "sha256-c+YP4pEGvLi7wZsDXrkoqR/isuYfXQmTwQp9gN5jHkQ=";
};
postPatch = ''
echo "${version}" > heisenbridge/version.txt
substituteInPlace setup.cfg \
--replace "irc >=19.0.0, <20.0" "irc"
'';
2022-01-15 02:43:40 +01:00
propagatedBuildInputs = with python3.pkgs; [
aiohttp
irc
2022-01-15 02:43:40 +01:00
mautrix
python-socks
pyyaml
];
2022-01-15 02:43:40 +01: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 ];
};
}