Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / genome-collector / default.nix
blob70589912520ae71ca139fbe124d74a6c15e80731
1 { lib
2 , buildPythonPackage
3 , appdirs
4 , biopython
5 , fetchPypi
6 , proglog
7 }:
9 buildPythonPackage rec {
10   pname = "genome_collector";
11   version = "0.1.6";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0023ihrz0waxbhq28xh1ymvk51ih882y9psg4glm6s9d1zmqvdph";
16   };
18   propagatedBuildInputs = [
19     appdirs
20     biopython
21     proglog
22   ];
24   # Project hasn't released the tests yet
25   doCheck = false;
26   pythonImportsCheck = [ "genome_collector" ];
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   };