Merge pull request #241134 from frederictobiasc/mautrix

mautrix-telegram: 0.14.0 -> 0.14.1, python3Packages.mautrix: 0.19.16 -> 0.20.0
This commit is contained in:
Nick Cao 2023-07-07 20:41:07 +08:00 committed by GitHub
commit b119b38cc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 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,19 @@ 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;
});
mautrix = super.mautrix.overridePythonAttrs (oldAttrs: rec {
version = "0.20.0";
src = oldAttrs.src.override {
rev = "refs/tags/v${version}";
hash = "sha256-op28CGpJBcCBiy0WXboaf4JeNRIMX6653QkAV6XW/yI=";
};
doCheck = false;
});
@ -22,14 +30,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";