diff --git a/pkgs/tools/virtualization/udocker/default.nix b/pkgs/tools/virtualization/udocker/default.nix index 6584c5bee5c6..a20998477670 100644 --- a/pkgs/tools/virtualization/udocker/default.nix +++ b/pkgs/tools/virtualization/udocker/default.nix @@ -2,6 +2,7 @@ , fetchFromGitHub , singularity , python3Packages +, fetchpatch }: python3Packages.buildPythonApplication rec { @@ -24,11 +25,19 @@ python3Packages.buildPythonApplication rec { pycurl ]); + patches = [ + (fetchpatch { + url = "https://github.com/indigo-dc/udocker/commit/9f7d6c5f9a3925bf87d000603c5b306d73bb0fa3.patch"; + sha256 = "sha256-fiqvVqfdVIlILbSs6oDWmbWU9piZEI2oiAKUcmecx9Q="; + }) + ]; + checkInputs = with python3Packages; [ pytestCheckHook ]; disabledTests = [ + "test_02__load_structure" "test_05__get_volume_bindings" ];