python3Packages.telethon-session-sqlalchemy: broken with SQLAlchemy 2

This commit is contained in:
Ryan Hendrickson 2023-05-09 19:40:09 -04:00
parent af7e39841a
commit c2857b982e

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";
};
}