mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{ lib, python311, fetchpatch, fetchPypi }:
|
|
|
|
# pin python311 because macs2 does not support python 3.12
|
|
# https://github.com/macs3-project/MACS/issues/598#issuecomment-1812622572
|
|
python311.pkgs.buildPythonPackage rec {
|
|
pname = "macs2";
|
|
version = "2.2.9.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = lib.toUpper pname;
|
|
inherit version;
|
|
hash = "sha256-jVa8N/uCP8Y4fXgTjOloQFxUoKjNl3ZoJwX9CYMlLRY=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/macs3-project/MACS/pull/590
|
|
(fetchpatch {
|
|
name = "remove-pip-build-dependency.patch";
|
|
url = "https://github.com/macs3-project/MACS/commit/cf95a930daccf9f16e5b9a9224c5a2670cf67939.patch";
|
|
hash = "sha256-WB3Ubqk5fKtZt97QYo/sZDU/yya9MUo1NL4VsKXR+Yo=";
|
|
})
|
|
];
|
|
|
|
build-system = with python311.pkgs; [
|
|
cython_0
|
|
numpy
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python311.pkgs; [
|
|
numpy
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = with python311.pkgs; [
|
|
unittestCheckHook
|
|
];
|
|
|
|
unittestFlagsArray = [
|
|
"-s"
|
|
"test"
|
|
];
|
|
|
|
pythonImportsCheck = [ "MACS2" ];
|
|
|
|
meta = with lib; {
|
|
description = "Model-based Analysis for ChIP-Seq";
|
|
mainProgram = "macs2";
|
|
homepage = "https://github.com/macs3-project/MACS/";
|
|
changelog = "https://github.com/macs3-project/MACS/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ gschwartz ];
|
|
};
|
|
}
|