nixpkgs/pkgs/servers/heisenbridge/default.nix

27 lines
732 B
Nix
Raw Normal View History

2021-09-20 13:19:46 +00:00
{ lib, fetchurl, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "heisenbridge";
2021-09-21 19:55:45 +00:00
version = "1.1.2";
2021-09-20 13:19:46 +00:00
# Use the release tarball because it has the version set correctly using the
# version.txt file.
src = fetchurl {
2021-09-21 19:55:45 +00:00
url = "https://github.com/hifi/heisenbridge/releases/download/v${version}/heisenbridge-${version}.tar.gz";
sha256 = "sha256-hY0dB4QT9W18ubUytvJwRUWKpNQMpyYdSLbmu+c8BCo=";
};
propagatedBuildInputs = with python3Packages; [
aiohttp
irc
pyyaml
];
meta = with lib; {
description = "A bouncer-style Matrix-IRC bridge.";
homepage = "https://github.com/hifi/heisenbridge";
license = licenses.mit;
maintainers = [ maintainers.sumnerevans ];
};
}