2019-02-12 23:00:30 -05:00
|
|
|
{ lib, fetchFromGitHub, fetchpatch, buildPythonPackage, cython, slurm }:
|
2017-07-13 04:49:21 +03:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 19:26:09 +08:00
|
|
|
pname = "pyslurm";
|
2019-08-15 00:19:20 +02:00
|
|
|
version = "19-05-0";
|
2017-07-13 04:49:21 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "pyslurm";
|
|
|
|
owner = "PySlurm";
|
2018-10-27 22:16:07 +02:00
|
|
|
rev = version;
|
2019-08-15 00:19:20 +02:00
|
|
|
sha256 = "1lfb4q81y96syz5an1lzscfcvmfvlkf4cfl3i5zllw9r3gbarl2r";
|
2017-07-13 04:49:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cython slurm ];
|
|
|
|
setupPyBuildFlags = [ "--slurm-lib=${slurm}/lib" "--slurm-inc=${slurm.dev}/include" ];
|
|
|
|
|
2018-06-25 08:58:04 -04:00
|
|
|
# Test cases need /etc/slurm/slurm.conf and require a working slurm installation
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-07-13 04:49:21 +03:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/PySlurm/pyslurm";
|
2017-07-13 04:49:21 +03:00
|
|
|
description = "Python bindings to Slurm";
|
|
|
|
license = licenses.gpl2;
|
2019-12-27 13:51:11 -05:00
|
|
|
maintainers = with maintainers; [ bhipple ];
|
2017-07-13 04:49:21 +03:00
|
|
|
};
|
|
|
|
}
|