Merge pull request #180239 from kilianar/udocker

udocker: fix build failure
This commit is contained in:
Sandro 2022-07-05 17:44:16 +02:00 committed by GitHub
commit 4aa2bb7d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
];