Merge pull request #230975 from rhendric/rhendric/python3Packages.telethon-session-sqlalchemy

python3Packages.telethon-session-sqlalchemy: broken with SQLAlchemy 2
This commit is contained in:
Jörg Thalheim 2023-05-10 07:14:49 +01:00 committed by GitHub
commit dddc6f9616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,5 +23,11 @@ buildPythonPackage rec {
description = "SQLAlchemy backend for Telethon session storage";
license = licenses.mit;
maintainers = with maintainers; [ nyanloutre ];
# Package requires SQLAlchemy <2
# https://github.com/tulir/telethon-session-sqlalchemy/blob/d498503ddde332e190bfa47e70f0bfa59fe6b5ef/setup.py#L17
# Repo is archived and so this is unlikely to change unless someone forks
# and takes over development
broken = versionAtLeast sqlalchemy.version "2";
};
}