summary refs log tree commit diff
path: root/pkgs/applications/science/biology/MACS2/default.nix
blob: 868479c48e55094e631fe8ba2b9390b3f5c9e0d2 (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
{ lib, python3, fetchurl }:

python3.pkgs.buildPythonPackage rec {
  pname = "MACS2";
  version = "2.2.7.1";

  src = python3.pkgs.fetchPypi {
    inherit pname version;
    sha256 = "1rcxj943kgzs746f5jrb72x1cp4v50rk3qmad0m99a02vndscb5d";
  };

  postPatch = ''
    # remove version check which breaks on 3.10
    substituteInPlace setup.py \
      --replace 'if float(sys.version[:3])<3.6:' 'if False:'
  '';

  propagatedBuildInputs = with python3.pkgs; [ numpy ];

  # To prevent ERROR: diffpeak_cmd (unittest.loader._FailedTest) for obsolete
  # function (ImportError: Failed to import test module: diffpeak_cmd)
  doCheck = false;
  pythonImportsCheck = [ "MACS2" ];

  meta = with lib; {
    description = "Model-based Analysis for ChIP-Seq";
    license = licenses.bsd3;
    maintainers = with maintainers; [ gschwartz ];
    platforms = platforms.linux;
    # error: ‘PyThreadState’ {aka ‘struct _ts’} has no member named ‘use_tracing’; did you mean ‘tracing’?
    broken = true;
  };
}