diff options
Diffstat (limited to 'pkgs/development/python-modules/hupper/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/hupper/default.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/hupper/default.nix b/pkgs/development/python-modules/hupper/default.nix index 315370de4c2c..0f46eef1eee3 100644 --- a/pkgs/development/python-modules/hupper/default.nix +++ b/pkgs/development/python-modules/hupper/default.nix @@ -1,9 +1,10 @@ -{ lib -, stdenv -, buildPythonPackage -, fetchPypi -, pytestCheckHook -, watchdog +{ + lib, + stdenv, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + watchdog, }: buildPythonPackage rec { @@ -18,11 +19,7 @@ buildPythonPackage rec { # FIXME: watchdog dependency is disabled on Darwin because of #31865, which causes very silent # segfaults in the testsuite that end up failing the tests in a background thread (in myapp) - nativeCheckInputs = [ - pytestCheckHook - ] ++ lib.optionals (!stdenv.isDarwin) [ - watchdog - ]; + nativeCheckInputs = [ pytestCheckHook ] ++ lib.optionals (!stdenv.isDarwin) [ watchdog ]; disabledTestPaths = [ # Doesn't work with an exported home, RuntimeError: timeout waiting for change to file=/build/tmpgfn145cx |
