summary refs log tree commit diff
path: root/pkgs/applications/science/misc/toil/default.nix
blob: a25fbe7565ce5349950cd64e7b54b3d05aebf3cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib, fetchFromGitHub, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "toil";
  version = "5.4.0";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "73c0648828bd3610c07b7648dd06d6ec27efefdb09473bf01d05d91eb899c9fd";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "docker = " "docker = 'docker' #" \
      --replace "addict = " "addict = 'addict' #"
  '';

  propagatedBuildInputs = with python3Packages; [
    addict
    docker
    pytz
    pyyaml
    enlighten
    psutil
    python-dateutil
    dill
  ];
  checkInputs = with python3Packages; [ pytestCheckHook ];

  pytestFlagsArray = [ "src/toil/test" ];
  pythonImportsCheck = [ "toil" ];

  meta = with lib; {
    homepage = "https://toil.ucsc-cgl.org/";
    license = with licenses; [ asl20 ];
    description = "Workflow engine written in pure Python";
    maintainers = with maintainers; [ veprbl ];
  };
}