Merge pull request #192891 from mweinelt/fix-tulir-telethon-override

mautrix-telegram: fix tulir-telethon override
This commit is contained in:
Mario Rodas 2022-09-25 09:36:31 -05:00 committed by GitHub
commit 5f379c4b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,10 +11,11 @@ let
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
version = "1.25.0a20";
pname = "tulir-telethon";
src = oldAttrs.src.override {
src = super.fetchPypi {
inherit pname version;
sha256 = "sha256-X9oo+YCNMqQrJvQa/PIi9dFgaeQxbrlnwUJnwjRb6Jc=";
};
doCheck = false;
});
};
};