mautrix-telegram: 0.14.0 -> 0.14.1

Add new configuration option regarding IPv6 support to the example.

Diff: https://github.com/mautrix/telegram/compare/refs/tags/v0.14.0...v0.14.1
Changelog: https://github.com/mautrix/telegram/releases/tag/v0.14.1
This commit is contained in:
Frédéric Tobias Christ 2023-07-02 17:44:51 +02:00
parent 4df93f374d
commit bb55edd515
2 changed files with 7 additions and 4 deletions

View file

@ -80,6 +80,9 @@ in {
"example.com" = "full";
"@admin:example.com" = "admin";
};
telegram = {
connection.use_ipv6 = true;
};
}
'';
description = lib.mdDoc ''

View file

@ -9,11 +9,11 @@ let
python = python3.override {
packageOverrides = self: super: {
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
version = "1.28.0a9";
version = "1.29.0a2";
pname = "tulir-telethon";
src = fetchPypi {
inherit pname version;
hash = "sha256-7lRoJYhy9c8RxJTW1/7SrNtA36mwIrPcyRMPVNhWJTk=";
hash = "sha256-pTN8mJxbXvnhL11PCH/ZLeSqW0GV124Y3JnDcLek8JE=";
};
doCheck = false;
});
@ -22,14 +22,14 @@ let
in
python.pkgs.buildPythonPackage rec {
pname = "mautrix-telegram";
version = "0.14.0";
version = "0.14.1";
disabled = python.pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mautrix";
repo = "telegram";
rev = "refs/tags/v${version}";
hash = "sha256-OPWa3jqaLnV7M1Q77N10A3HT65dNon6RWE5mbQRvjEs=";
hash = "sha256-n3gO8R5lVl/8Tgo2tPzM64O2BRhoitsuPIC87bfxczc=";
};
format = "setuptools";