py-ncbi-genome-download: new package (#33511)
* py-ncbi-genome-download: new package * fixed style
This commit is contained in:
parent
34d55af55d
commit
57226a870b
1 changed files with 21 additions and 0 deletions
|
@ -0,0 +1,21 @@
|
|||
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
|
||||
from spack.package import *
|
||||
|
||||
|
||||
class PyNcbiGenomeDownload(PythonPackage):
|
||||
"""Scripts to download genomes from the NCBI FTP servers"""
|
||||
|
||||
homepage = "https://github.com/kblin/ncbi-genome-download/"
|
||||
pypi = "ncbi-genome-download/ncbi-genome-download-0.3.1.tar.gz"
|
||||
|
||||
version("0.3.1", sha256="74675e94f184b8d80429641b27ed6d46ed81028d95156337de6d09f8dd739c6e")
|
||||
|
||||
depends_on("py-setuptools", type="build")
|
||||
depends_on("py-appdirs", type=("build", "run"))
|
||||
depends_on("py-requests@2.4.3:", type=("build", "run"))
|
||||
depends_on("py-tqdm", type=("build", "run"))
|
Loading…
Reference in a new issue