depot/third_party/nixpkgs/pkgs/applications/science/biology/eggnog-mapper/default.nix
Default email 686ce24904 Project import generated by Copybara.
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
2023-02-16 18:41:37 +01:00

54 lines
1.2 KiB
Nix

{ lib
, autoPatchelfHook
, fetchFromGitHub
, python3Packages
, wget
, zlib
}:
python3Packages.buildPythonApplication rec {
pname = "eggnog-mapper";
version = "2.1.10";
src = fetchFromGitHub {
owner = "eggnogdb";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-6R2gl2l2Cl/eva0g+kxDLBI2+5T9cFTgaGMsEfeDVU0=";
};
postPatch = ''
# Not a great solution...
substituteInPlace setup.cfg \
--replace "==" ">="
'';
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
zlib
];
propagatedBuildInputs = [
wget
] ++ (with python3Packages; [
biopython
psutil
XlsxWriter
]);
# Tests rely on some of the databases being available, which is not bundled
# with this package as (1) in total, they represent >100GB of data, and (2)
# the user can download only those that interest them.
doCheck = false;
meta = with lib; {
description = "Fast genome-wide functional annotation through orthology assignment";
license = licenses.gpl2;
homepage = "https://github.com/eggnogdb/eggnog-mapper/wiki";
maintainers = with maintainers; [ luispedro ];
platforms = platforms.all;
};
}