summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-05-29 21:32:26 +0200
committerGitHub <noreply@github.com>2023-05-29 21:32:26 +0200
commit56b4c2b5b1789b7591f9c26faf2a107d88b9b146 (patch)
tree8761e0535af9bf2ffe48db6feb041e7d8f86f10b
parenta421d990096ab55c9c27ab127ba155a1ca354073 (diff)
parentc5fba7d0cc5d3617ccb965943dbb0f8f9bfe213a (diff)
Merge pull request #234846 from NixOS/backport-234781-to-release-23.05
[Backport release-23.05] python310Packages.jupyterhub: mark broken
-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";