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