From b68618fc5612c12b8f8a8c39ed51edf825b9e2b6 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 16 Aug 2021 08:15:43 -0700 Subject: [PATCH] python3Packages.pybids: mark broken see https://github.com/bids-standard/pybids/issues/680 --- pkgs/development/python-modules/pybids/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pybids/default.nix b/pkgs/development/python-modules/pybids/default.nix index 3ed34b4e73d7..97187abd7591 100644 --- a/pkgs/development/python-modules/pybids/default.nix +++ b/pkgs/development/python-modules/pybids/default.nix @@ -42,5 +42,8 @@ buildPythonPackage rec { homepage = "https://github.com/bids-standard/pybids"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; + # Doesn't support sqlalchemy >=1.4 + # See https://github.com/bids-standard/pybids/issues/680 + broken = true; }; }