about summary refs log tree commit diff
path: root/pkgs/development/python-modules/werkzeug
diff options
context:
space:
mode:
authorRob Vermaas <rob.vermaas@gmail.com>2018-01-16 21:32:35 +0100
committerRob Vermaas <rob.vermaas@gmail.com>2018-01-16 21:32:35 +0100
commitb62c601e911398a6c20fc7cc33509526fb999cd3 (patch)
tree8dfaf954b7dbc3c5898f1f081f7d68d705bbdd9d /pkgs/development/python-modules/werkzeug
parent60468bf4e5862350f970407ed7f86c1bb3ddd6f9 (diff)
downloadnixlib-b62c601e911398a6c20fc7cc33509526fb999cd3.tar
nixlib-b62c601e911398a6c20fc7cc33509526fb999cd3.tar.gz
nixlib-b62c601e911398a6c20fc7cc33509526fb999cd3.tar.bz2
nixlib-b62c601e911398a6c20fc7cc33509526fb999cd3.tar.lz
nixlib-b62c601e911398a6c20fc7cc33509526fb999cd3.tar.xz
nixlib-b62c601e911398a6c20fc7cc33509526fb999cd3.tar.zst
nixlib-b62c601e911398a6c20fc7cc33509526fb999cd3.zip
werkzeug: disable one test on darwin.
Diffstat (limited to 'pkgs/development/python-modules/werkzeug')
-rw-r--r--pkgs/development/python-modules/werkzeug/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/werkzeug/default.nix b/pkgs/development/python-modules/werkzeug/default.nix
index 78380900416d..58be98f183b6 100644
--- a/pkgs/development/python-modules/werkzeug/default.nix
+++ b/pkgs/development/python-modules/werkzeug/default.nix
@@ -16,7 +16,7 @@ buildPythonPackage rec {
   checkInputs = [ pytest requests glibcLocales hypothesis ];
 
   checkPhase = ''
-    LC_ALL="en_US.UTF-8" py.test
+    LC_ALL="en_US.UTF-8" py.test ${stdenv.lib.optionalString stdenv.isDarwin "-k 'not test_get_machine_id'"}
   '';
 
   meta = with stdenv.lib; {