nixpkgs/pkgs/servers/heisenbridge/default.nix

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

37 lines
793 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "heisenbridge";
2024-01-22 02:34:08 +00:00
version = "1.14.6";
src = fetchFromGitHub {
owner = "hifi";
repo = pname;
2022-05-19 15:38:14 +00:00
rev = "refs/tags/v${version}";
2024-01-22 02:34:08 +00:00
sha256 = "sha256-1ljRwJYdIKWuTRDnH2EcZ6zQp4o4Rx+/9OqjX6J4gDA=";
};
postPatch = ''
echo "${version}" > heisenbridge/version.txt
'';
propagatedBuildInputs = with python3.pkgs; [
irc
2023-01-31 05:24:57 +00:00
ruamel-yaml
2022-01-15 01:43:40 +00:00
mautrix
python-socks
];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
];
meta = with lib; {
description = "Bouncer-style Matrix-IRC bridge";
homepage = "https://github.com/hifi/heisenbridge";
license = licenses.mit;
maintainers = [ maintainers.sumnerevans ];
2023-11-27 01:17:53 +00:00
mainProgram = "heisenbridge";
};
}