summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-utils
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-utils')
-rw-r--r--pkgs/development/python-modules/python-utils/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-utils/default.nix b/pkgs/development/python-modules/python-utils/default.nix
index 5243e3d341d6..ac69e15ec77d 100644
--- a/pkgs/development/python-modules/python-utils/default.nix
+++ b/pkgs/development/python-modules/python-utils/default.nix
@@ -1,4 +1,5 @@
{ lib
+, stdenv
, buildPythonPackage
, fetchFromGitHub
, loguru
@@ -47,6 +48,11 @@ buildPythonPackage rec {
"_python_utils_tests"
];
+ disabledTests = lib.optionals stdenv.isDarwin [
+ # Flaky tests on darwin
+ "test_timeout_generator"
+ ];
+
meta = with lib; {
description = "Module with some convenient utilities";
homepage = "https://github.com/WoLpH/python-utils";