From 25a29e667141688f780d155f65fd1c65df7f82cb Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Wed, 2 Sep 2015 10:34:29 +0200 Subject: [PATCH] pythonPackages.scikitlearn: fix for python2 test_standard_scaler_numerical_stability test fails on all i686 platforms --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b55503643d95..d16d98d23741 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12672,7 +12672,7 @@ let }) ]; - postPatch = optionalString (stdenv.isi686 && isPy3k) '' + postPatch = optionalString stdenv.isi686 '' sed -i -e "s|test_standard_scaler_numerical_stability|_skip_test_standard_scaler_numerical_stability|g" sklearn/preprocessing/tests/test_data.py '';