From d6ba3f319c7ad2444cc13a0251508aac75714f36 Mon Sep 17 00:00:00 2001 From: xfnw Date: Tue, 9 May 2023 17:05:25 -0400 Subject: [PATCH] python3Packages.dataset: mark as broken dataset depends on versions of SQLAlchemy older than what nixpkgs provides. see https://github.com/pudo/dataset/issues/411 --- pkgs/development/python-modules/dataset/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/dataset/default.nix b/pkgs/development/python-modules/dataset/default.nix index d437c5794feb..a3f2d67d35a7 100644 --- a/pkgs/development/python-modules/dataset/default.nix +++ b/pkgs/development/python-modules/dataset/default.nix @@ -37,5 +37,8 @@ buildPythonPackage rec { homepage = "https://dataset.readthedocs.io"; license = licenses.mit; maintainers = with maintainers; [ xfnw ]; + # SQLAlchemy >= 2.0.0 is unsupported + # https://github.com/pudo/dataset/issues/411 + broken = true; }; }