summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-05-29 13:26:54 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-05-29 18:57:12 +0000
commitc5fba7d0cc5d3617ccb965943dbb0f8f9bfe213a (patch)
tree4b7a16c1c4e93bd751b0065a45e329c35c30b10a
parentd14b8ea6d4337d67f39ffd6464e897cc79e5829d (diff)
python310Packages.jupyterhub: mark broken
Not compatible with SQLAlchemy 2.0.

(cherry picked from commit 4b41ea8cbedbb8abd5cbbb7a834e34cdce81470f)
-rw-r--r--pkgs/development/python-modules/jupyterhub/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/jupyterhub/default.nix b/pkgs/development/python-modules/jupyterhub/default.nix
index 8424d5add9164..9dea973b042fe 100644
--- a/pkgs/development/python-modules/jupyterhub/default.nix
+++ b/pkgs/development/python-modules/jupyterhub/default.nix
@@ -154,8 +154,7 @@ buildPythonPackage rec {
   ];
 
   meta = with lib; {
-    # darwin: E   OSError: dlopen(/nix/store/43zml0mlr17r5jsagxr00xxx91hz9lky-openpam-20170430/lib/libpam.so, 6): image not found
-    broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
+    broken = lib.versionAtLeast sqlalchemy.version "2.0";
     description = "Serves multiple Jupyter notebook instances";
     homepage = "https://jupyter.org/";
     changelog = "https://github.com/jupyterhub/jupyterhub/blob/${version}/docs/source/changelog.md";