From c04327690b7362b5d6dcb0c37e4a480a4aa93431 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 1 Mar 2023 15:55:32 +0100 Subject: [PATCH] python310Packages.databases: Mark broken with sqlalchemy>=2.0 The upstream indicated that they have no resources to develop support themselves. --- pkgs/development/python-modules/databases/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/databases/default.nix b/pkgs/development/python-modules/databases/default.nix index b01564c7eeb3..f3bbe6ace9d5 100644 --- a/pkgs/development/python-modules/databases/default.nix +++ b/pkgs/development/python-modules/databases/default.nix @@ -78,5 +78,7 @@ buildPythonPackage rec { changelog = "https://github.com/encode/databases/releases/tag/${version}"; license = licenses.bsd3; maintainers = with maintainers; [ costrouc ]; + # https://github.com/encode/databases/issues/530 + broken = lib.versionAtLeast sqlalchemy.version "2.0.0"; }; }