anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / genome-collector / default.nix
blob84f34bedd80ed520a046afc41edaa0ece5f55b4e
2   lib,
3   buildPythonPackage,
4   appdirs,
5   biopython,
6   fetchPypi,
7   proglog,
8 }:
10 buildPythonPackage rec {
11   pname = "genome_collector";
12   version = "0.1.6";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "0023ihrz0waxbhq28xh1ymvk51ih882y9psg4glm6s9d1zmqvdph";
17   };
19   propagatedBuildInputs = [
20     appdirs
21     biopython
22     proglog
23   ];
25   # Project hasn't released the tests yet
26   doCheck = false;
27   pythonImportsCheck = [ "genome_collector" ];
29   meta = with lib; {
30     description = "Genomes and build BLAST/Bowtie indexes in Python";
31     homepage = "https://github.com/Edinburgh-Genome-Foundry/genome_collector";
32     license = with licenses; [ mit ];
33     maintainers = with maintainers; [ fab ];
34   };