lol

python3Packages.ffmpeg-progress-yield: fix build on Darwin by disabling failing tests

+11
+11
pkgs/development/python-modules/ffmpeg-progress-yield/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 setuptools, ··· 39 40 ]; 40 41 41 42 enabledTestPaths = [ "test/test.py" ]; 43 + 44 + disabledTests = lib.optional stdenv.hostPlatform.isDarwin [ 45 + # cannot access /usr/bin/pgrep from the sandbox 46 + "test_context_manager" 47 + "test_context_manager_with_exception" 48 + "test_automatic_cleanup_on_exception" 49 + "test_async_context_manager" 50 + "test_async_context_manager_with_exception" 51 + "test_async_automatic_cleanup_on_exception" 52 + ]; 42 53 43 54 pythonImportsCheck = [ "ffmpeg_progress_yield" ]; 44 55