1 { lib, fetchFromGitHub, python3 }:
3 python3.pkgs.buildPythonApplication rec {
4 pname = "heisenbridge";
7 src = fetchFromGitHub {
10 rev = "refs/tags/v${version}";
11 sha256 = "sha256-1ljRwJYdIKWuTRDnH2EcZ6zQp4o4Rx+/9OqjX6J4gDA=";
15 echo "${version}" > heisenbridge/version.txt
18 propagatedBuildInputs = with python3.pkgs; [
25 nativeCheckInputs = with python3.pkgs; [
30 description = "A bouncer-style Matrix-IRC bridge.";
31 homepage = "https://github.com/hifi/heisenbridge";
32 license = licenses.mit;
33 maintainers = [ maintainers.sumnerevans ];
34 mainProgram = "heisenbridge";