My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/genome-collector/default.nix

34 lines
715 B

{ lib
, buildPythonPackage
, appdirs
, biopython
, fetchPypi
, proglog
}:
buildPythonPackage rec {
pname = "genome_collector";
version = "0.1.6";
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 ];
};
}