heisenbridge: init at unstable-2021-05-23 (#123846)

This commit is contained in:
Sumner Evans 2021-05-23 09:35:44 -06:00 committed by GitHub
parent bacd5a971c
commit 9fad0cbd5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "heisenbridge";
version = "unstable-2021-05-23";
src = fetchFromGitHub {
owner = "hifi";
repo = "heisenbridge";
rev = "1f8df49b7e89aaeb2cbb5fee68bd29cf3eda079a";
sha256 = "sha256-ta6n9hXRdIjfxsLy9jrzZkz6TS50/TYpFOb/BLrRWK4=";
};
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 ];
};
}

View file

@ -5582,6 +5582,8 @@ in
heimdall-gui = heimdall.override { enableGUI = true; };
heisenbridge = callPackage ../servers/heisenbridge { };
helio-workstation = callPackage ../applications/audio/helio-workstation { };
hevea = callPackage ../tools/typesetting/hevea { };