nixpkgs/pkgs/servers/heisenbridge/default.nix

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

36 lines
762 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "heisenbridge";
version = "1.14.4";
src = fetchFromGitHub {
owner = "hifi";
repo = pname;
2022-05-19 17:38:14 +02:00
rev = "refs/tags/v${version}";
sha256 = "sha256-4poHHwJ9WcOTTwOtPfANMqusaLltaoLryxNMQE1Parc=";
};
postPatch = ''
echo "${version}" > heisenbridge/version.txt
'';
propagatedBuildInputs = with python3.pkgs; [
irc
2023-01-31 06:24:57 +01:00
ruamel-yaml
2022-01-15 02:43:40 +01:00
mautrix
python-socks
];
nativeCheckInputs = 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 ];
};
}