Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
748 B
Nix
37 lines
748 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
appdirs,
|
|
biopython,
|
|
fetchPypi,
|
|
proglog,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "genome_collector";
|
|
version = "0.1.6";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0023ihrz0waxbhq28xh1ymvk51ih882y9psg4glm6s9d1zmqvdph";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
biopython
|
|
proglog
|
|
];
|
|
|
|
# Project hasn't released the tests yet
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "genome_collector" ];
|
|
|
|
meta = with lib; {
|
|
description = "Genomes and build BLAST/Bowtie indexes in Python";
|
|
homepage = "https://github.com/Edinburgh-Genome-Foundry/genome_collector";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|