mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 00:54:11 +00:00
29 lines
661 B
Nix
29 lines
661 B
Nix
{ lib, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "heisenbridge";
|
|
version = "0.99.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hifi";
|
|
repo = "heisenbridge";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-NUSAOixU93z77QeVAua6yNk+/eDRreS5Hv1btBWh3gs=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|