forked from mirrors/nixpkgs
108 lines
2.9 KiB
Nix
108 lines
2.9 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pyyaml
|
|
, openssh
|
|
, nose
|
|
, bc
|
|
, hostname
|
|
, bash
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ClusterShell";
|
|
version = "1.9.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-bwqzyhQbUI2gPOGb1S8eXo0pdz/DBi1782RQqCIH7Bs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace lib/ClusterShell/Worker/Ssh.py \
|
|
--replace '"ssh"' '"${openssh}/bin/ssh"' \
|
|
--replace '"scp"' '"${openssh}/bin/scp"'
|
|
|
|
substituteInPlace lib/ClusterShell/Worker/fastsubprocess.py \
|
|
--replace '"/bin/sh"' '"${bash}/bin/sh"'
|
|
|
|
for f in tests/*; do
|
|
substituteInPlace $f \
|
|
--replace '/bin/hostname' '${hostname}/bin/hostname' \
|
|
--replace '/bin/sleep' 'sleep' \
|
|
--replace '/bin/echo' 'echo' \
|
|
--replace '/bin/uname' 'uname' \
|
|
--replace '/bin/false' 'false' \
|
|
--replace '/bin/true' 'true' \
|
|
--replace '/usr/bin/printf' 'printf'
|
|
done
|
|
|
|
# Fix warnings
|
|
substituteInPlace lib/ClusterShell/Task.py \
|
|
--replace "notifyAll" "notify_all"
|
|
substituteInPlace tests/TaskPortTest.py lib/ClusterShell/Task.py \
|
|
--replace "currentThread" "current_thread"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ pyyaml ];
|
|
|
|
nativeCheckInputs = [
|
|
bc
|
|
hostname
|
|
nose
|
|
];
|
|
|
|
pythonImportsCheck = [ "ClusterShell" ];
|
|
|
|
# Many tests want to open network connections
|
|
# https://github.com/cea-hpc/clustershell#test-suite
|
|
#
|
|
# Several tests fail on Darwin
|
|
checkPhase = ''
|
|
rm tests/CLIClushTest.py
|
|
rm tests/TreeWorkerTest.py
|
|
rm tests/TaskDistantMixin.py
|
|
rm tests/TaskDistantTest.py
|
|
rm tests/TaskDistantPdshMixin.py
|
|
rm tests/TaskDistantPdshTest.py
|
|
rm tests/TaskRLimitsTest.py
|
|
|
|
nosetests -v \
|
|
-e test_channel_ctl_shell_remote1 \
|
|
-e test_channel_ctl_shell_remote2 \
|
|
-e test_fromall_grouplist \
|
|
-e test_rank_placeholder \
|
|
-e test_engine_on_the_fly_launch \
|
|
-e test_ev_pickup_fanout \
|
|
-e test_ev_pickup_fanout_legacy \
|
|
-e test_timeout \
|
|
-e test_008_broken_pipe_on_write \
|
|
-e testLocalBufferRCGathering \
|
|
-e testLocalBuffers \
|
|
-e testLocalErrorBuffers \
|
|
-e testLocalFanout \
|
|
-e testLocalRetcodes \
|
|
-e testLocalRCBufferGathering \
|
|
-e testLocalSingleLineBuffers \
|
|
-e testLocalWorkerFanout \
|
|
-e testSimpleMultipleCommands \
|
|
-e testClushConfigSetRlimit \
|
|
-e testTimerInvalidateInHandler \
|
|
-e testTimerSetNextFireInHandler \
|
|
-e test_channel_ctl_shell_mlocal1 \
|
|
-e test_channel_ctl_shell_mlocal2 \
|
|
-e test_channel_ctl_shell_mlocal3 \
|
|
-e test_node_placeholder \
|
|
tests/*.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
description = "Scalable Python framework for cluster administration";
|
|
homepage = "https://cea-hpc.github.io/clustershell";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.alexvorobiev ];
|
|
};
|
|
}
|