889482aab3
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
33 lines
1,011 B
Nix
33 lines
1,011 B
Nix
{ 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;
|
||
};
|
||
}
|