about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-17 23:11:39 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-18 00:40:21 +0100
commitc3fa2657af5c0b6faea923f00c4824735c142b8c (patch)
tree8b287cfa8e84baf3ab8ff59a165c6a681524e18b
parentd14fd98e799e16876a1fd434f16bf27e76baf78e (diff)
pythonPackages.jupyterhub: mark broken on darwin
-rw-r--r--pkgs/development/python-modules/jupyterhub/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jupyterhub/default.nix b/pkgs/development/python-modules/jupyterhub/default.nix
index 85f07b182d8bc..108d11853f053 100644
--- a/pkgs/development/python-modules/jupyterhub/default.nix
+++ b/pkgs/development/python-modules/jupyterhub/default.nix
@@ -1,4 +1,5 @@
 { lib
+, stdenv
 , buildPythonPackage
 , pythonOlder
 , fetchPypi
@@ -155,5 +156,7 @@ buildPythonPackage rec {
     homepage = "https://jupyter.org/";
     license = licenses.bsd3;
     maintainers = with maintainers; [ ixxie cstrahan ];
+    # E   OSError: dlopen(/nix/store/43zml0mlr17r5jsagxr00xxx91hz9lky-openpam-20170430/lib/libpam.so, 6): image not found
+    broken = stdenv.isDarwin;
   };
 }