nixpkgs/pkgs/servers/heisenbridge/default.nix
Sumner Evans c2ac1112e5
heisenbridge: unstable-2021-05-23 -> unstable-2021-05-29
Critically, this includes the changes from hifi/heisenbridge#78 which
adds an entrypoint so that the executable works.
2021-05-29 22:16:23 -06:00

29 lines
703 B
Nix

{ lib, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "heisenbridge";
version = "unstable-2021-05-29";
src = fetchFromGitHub {
owner = "hifi";
repo = "heisenbridge";
rev = "980755226b0cb46ad9c7f40e0e940f354212a8b7";
sha256 = "sha256-jO1Dqtv3IbV4FLI3C82pxssgrCf43hAEcPLYszX2GNI=";
};
propagatedBuildInputs = with python3Packages; [
aiohttp
irc
pyyaml
];
checkInputs = [ python3Packages.pytestCheckHook ];
meta = with lib; {
description = "A bouncer-style Matrix-IRC bridge.";
homepage = "https://github.com/hifi/heisenbridge";
license = licenses.mit;
maintainers = [ maintainers.sumnerevans ];
};
}