summary refs log tree commit diff
path: root/pkgs/development/python-modules/genome-collector/default.nix
blob: 70589912520ae71ca139fbe124d74a6c15e80731 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ 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 ];
  };
}