diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index 25d7af265d13..ba6469bfdc56 100644 --- a/pkgs/development/python-modules/b2sdk/default.nix +++ b/pkgs/development/python-modules/b2sdk/default.nix @@ -1,17 +1,16 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, logfury, annotated-types, packaging, pdm-backend, - pyfakefs, pytest-lazy-fixtures, pytest-mock, pytest-timeout, pytestCheckHook, + pythonAtLeast, pythonOlder, requests, responses, @@ -54,6 +53,12 @@ buildPythonPackage rec { "test/unit" ]; + disabledTests = lib.optionals (pythonAtLeast "3.14") [ + # - 'could not be accessed (no permissions to read?)', + # + 'could not be accessed (broken symlink?)', + "test_dir_without_exec_permission" + ]; + pythonImportsCheck = [ "b2sdk" ]; meta = {