diff options
| author | Mario Rodas <marsam@users.noreply.github.com> | 2023-02-13 07:32:00 +0000 |
|---|---|---|
| committer | Mario Rodas <marsam@users.noreply.github.com> | 2023-02-13 07:32:00 +0000 |
| commit | a9898979dde654944719267cef74b1aa7777147f (patch) | |
| tree | d71427f337294ee1488eb7a7fa1fbb2d5d410a3b /pkgs/development/python-modules/python-utils | |
| parent | be4000d572ea9d384d9b705242298779fe6fb9ef (diff) | |
python310Packages.python-utils: fix build on darwin
Diffstat (limited to 'pkgs/development/python-modules/python-utils')
| -rw-r--r-- | pkgs/development/python-modules/python-utils/default.nix | 6 |
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"; |
