46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
python3Packages,
|
|
cmake,
|
|
python3,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "obitools3";
|
|
version = "3.0.1b11";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.metabarcoding.org/obitools/${pname}/repository/v${version}/archive.tar.gz";
|
|
sha256 = "1x7a0nrr9agg1pfgq8i1j8r1p6c0jpyxsv196ylix1dd2iivmas1";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3Packages.cython
|
|
cmake
|
|
];
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isAarch64 ''
|
|
substituteInPlace setup.py \
|
|
--replace "'-msse2'," ""
|
|
'';
|
|
|
|
preBuild = ''
|
|
substituteInPlace src/CMakeLists.txt --replace \$'{PYTHONLIB}' "$out/${python3.sitePackages}";
|
|
export NIX_CFLAGS_COMPILE="-L $out/${python3.sitePackages} $NIX_CFLAGS_COMPILE"
|
|
'';
|
|
|
|
dontConfigure = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Management of analyses and data in DNA metabarcoding";
|
|
mainProgram = "obi";
|
|
homepage = "https://git.metabarcoding.org/obitools/obitools3";
|
|
license = licenses.cecill20;
|
|
maintainers = [ maintainers.bzizou ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|