1{ lib
2, buildPythonPackage
3, appdirs
4, biopython
5, fetchPypi
6, proglog
7}:
8
9buildPythonPackage rec {
10 pname = "genome_collector";
11 version = "0.1.6";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "0023ihrz0waxbhq28xh1ymvk51ih882y9psg4glm6s9d1zmqvdph";
16 };
17
18 propagatedBuildInputs = [
19 appdirs
20 biopython
21 proglog
22 ];
23
24 # Project hasn't released the tests yet
25 doCheck = false;
26 pythonImportsCheck = [ "genome_collector" ];
27
28 meta = with lib; {
29 description = "Genomes and build BLAST/Bowtie indexes in Python";
30 homepage = "https://github.com/Edinburgh-Genome-Foundry/genome_collector";
31 license = with licenses; [ mit ];
32 maintainers = with maintainers; [ fab ];
33 };
34}