udocker: 1.1.3 -> 1.3.1 and make usable
This commit is contained in:
parent
ecc968543c
commit
01c5b01858
@ -1,35 +1,42 @@
|
|||||||
{ lib, fetchFromGitHub, proot, patchelf, fakechroot, runc, simplejson, pycurl, coreutils, nose, mock, buildPythonApplication }:
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, singularity
|
||||||
|
, python3Packages
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
|
|
||||||
version = "1.1.3";
|
|
||||||
pname = "udocker";
|
pname = "udocker";
|
||||||
|
version = "1.3.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "indigo-dc";
|
owner = "indigo-dc";
|
||||||
repo = "udocker" ;
|
repo = "udocker";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1c8y1p3brj987drikwrby8m1hdr40ja4anx0p4xsij3ll2h62w6z";
|
sha256 = "0dfsjgidsnah8nrclrq10yz3ja859123z81kq4zdifbrhnrn5a2x";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ proot patchelf fakechroot runc simplejson pycurl coreutils ];
|
# crun patchelf proot runc fakechroot
|
||||||
|
# are download statistically linked during runtime
|
||||||
|
buildInputs = [
|
||||||
|
singularity
|
||||||
|
] ++ (with python3Packages; [
|
||||||
|
pytest-runner
|
||||||
|
pycurl
|
||||||
|
]);
|
||||||
|
|
||||||
postPatch = ''
|
checkInputs = with python3Packages; [
|
||||||
substituteInPlace udocker.py --replace /usr/sbin:/sbin:/usr/bin:/bin $PATH
|
pytestCheckHook
|
||||||
substituteInPlace udocker.py --replace /bin/chmod ${coreutils}/bin/chmod
|
|
||||||
substituteInPlace udocker.py --replace /bin/rm ${coreutils}/bin/rm
|
|
||||||
substituteInPlace tests/unit_tests.py --replace /bin/rm ${coreutils}/bin/rm
|
|
||||||
substituteInPlace udocker.py --replace "autoinstall = True" "autoinstall = False"
|
|
||||||
'';
|
|
||||||
|
|
||||||
checkInputs = [
|
|
||||||
nose
|
|
||||||
mock
|
|
||||||
];
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
disabledTests = [
|
||||||
NOSE_EXCLUDE=test_03_create_repo,test_04_is_repo,test_02__get_group_from_host nosetests -v tests/unit_tests.py
|
"test_05__get_volume_bindings"
|
||||||
'';
|
];
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
|
# Network
|
||||||
|
"tests/unit/test_curl.py"
|
||||||
|
"tests/unit/test_dockerioapi.py"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "basic user tool to execute simple docker containers in user space without root privileges";
|
description = "basic user tool to execute simple docker containers in user space without root privileges";
|
||||||
|
@ -27668,7 +27668,7 @@ in
|
|||||||
|
|
||||||
umurmur = callPackage ../applications/networking/umurmur { };
|
umurmur = callPackage ../applications/networking/umurmur { };
|
||||||
|
|
||||||
udocker = pythonPackages.callPackage ../tools/virtualization/udocker { };
|
udocker = callPackage ../tools/virtualization/udocker { };
|
||||||
|
|
||||||
uefitoolPackages = recurseIntoAttrs (callPackage ../tools/system/uefitool/variants.nix {});
|
uefitoolPackages = recurseIntoAttrs (callPackage ../tools/system/uefitool/variants.nix {});
|
||||||
uefitool = uefitoolPackages.new-engine;
|
uefitool = uefitoolPackages.new-engine;
|
||||||
|
Loading…
Reference in New Issue
Block a user