summary refs log tree commit diff
path: root/pkgs/development/python-modules/dash/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/dash/default.nix')
-rw-r--r--pkgs/development/python-modules/dash/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/dash/default.nix b/pkgs/development/python-modules/dash/default.nix
index 064c6f2b12f..34177b1b5c0 100644
--- a/pkgs/development/python-modules/dash/default.nix
+++ b/pkgs/development/python-modules/dash/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
 , buildPythonPackage
 , fetchFromGitHub
 , plotly
@@ -9,6 +10,7 @@
 , dash-table
 , pytest-mock
 , mock
+, pyyaml
 , pytestCheckHook
 , pythonOlder
 }:
@@ -40,6 +42,7 @@ buildPythonPackage rec {
     pytestCheckHook
     pytest-mock
     mock
+    pyyaml
   ];
 
   disabledTestPaths = [
@@ -51,6 +54,7 @@ buildPythonPackage rec {
   pythonImportsCheck = [ "dash" ];
 
   meta = with lib; {
+    broken = stdenv.isDarwin;
     description = "Python framework for building analytical web applications";
     homepage = "https://dash.plot.ly/";
     license = licenses.mit;