Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 35 lines 723 B view raw
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 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "0023ihrz0waxbhq28xh1ymvk51ih882y9psg4glm6s9d1zmqvdph"; 17 }; 18 19 propagatedBuildInputs = [ 20 appdirs 21 biopython 22 proglog 23 ]; 24 25 # Project hasn't released the tests yet 26 doCheck = false; 27 pythonImportsCheck = [ "genome_collector" ]; 28 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 }; 35}