mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
Merge pull request #180239 from kilianar/udocker
udocker: fix build failure
This commit is contained in:
commit
4aa2bb7d3e
@ -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"
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user