python3Packages.genome-collector: init at 0.1.6
This commit is contained in:
parent
0575e0d2c2
commit
a53f12762b
2 changed files with 36 additions and 0 deletions
34
pkgs/development/python-modules/genome-collector/default.nix
Normal file
34
pkgs/development/python-modules/genome-collector/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2422,6 +2422,8 @@ in {
|
||||||
|
|
||||||
genanki = callPackage ../development/python-modules/genanki { };
|
genanki = callPackage ../development/python-modules/genanki { };
|
||||||
|
|
||||||
|
genome-collector = callPackage ../development/python-modules/genome-collector { };
|
||||||
|
|
||||||
genpy = callPackage ../development/python-modules/genpy { };
|
genpy = callPackage ../development/python-modules/genpy { };
|
||||||
|
|
||||||
genshi = callPackage ../development/python-modules/genshi { };
|
genshi = callPackage ../development/python-modules/genshi { };
|
||||||
|
|
Loading…
Reference in a new issue