Merge pull request #256305 from wietsedv/patch-1

mautrix-telegram: 0.14.1 -> 0.14.2
This commit is contained in:
Nick Cao 2023-09-20 11:33:17 -04:00 committed by GitHub
commit 468f01a522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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